Deprecated
#Crypto
#Install package with get
Get downloads the packages named by the import paths, along with their dependencies. It then installs the named packages, like ‘go install’.
1go get github.com/ArkEcosystem/go-crypto/crypto
#Development
- Fork the package .
- Clone forked repository.
1git clone https://github.com/<githubusername>/go-crypto
- Next, move into the cloned directory.
1cd go-crypto
- Install the dependencies.
1# -t Will Also Fetch Dependencies Related to Tests2go get -t ./...
- Dependencies are now installed, you can now run the tests to see if everything is running as it should.
1go test ./...
Last updated 3 years ago
Edit Page