#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’.
go get github.com/ARKEcosystem/go-crypto/crypto
#Development
- Fork the package.
- Clone forked repository.
git clone https://github.com//go-crypto
- Next, move into the cloned directory.
cd go-crypto
- Install the dependencies.
# -t Will Also Fetch Dependencies Related to Tests
go get -t ./...
- Dependencies are now installed, you can now run the tests to see if everything is running as it should.
go test ./...
Last updated 3 months ago
Edit Page