Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Latest commit

 

History

History
42 lines (29 loc) · 774 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 774 Bytes
id title description
getting-started
Getting Started
GoLang Client Library For Communicating With Core Server Public REST API

Client

Install package with get

go get github.com/ARKEcosystem/go-client/client

Development

  1. Fork the package

  2. Clone forked repository.

    git clone https://github.com/<githubusername>/go-client
  3. Next, move into the fresh cloned directory.

    cd go-client
  4. Install the dependencies.

    # -t Also Fetches Dependencies Related to Tests
    go get -t ./...
  5. Dependencies are now installed, you can now run the tests to see if everything is running as it should.

    go test ./...