Skip to content

racker/kumoru-sdk-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kumoru SDK for Golang

This repository holds the Kumoru.io SDK for golang and the official CLI.

Installing

go get -u github.com/kumoru/kumoru-sdk-go

Requirements

  • go 1.7

The SDK

Each component of the SDK can be independently imported directly into your application:

import "github.com/kumoru/kumoru-sdk-go/pkg/service/application/application
…

The CLI

You can download the latest release from Releases.

or if you prefer to get the latest code and build it yourself, you'll need to:

  1. Clone this repository
  2. Run make install-cli to build it for your local system. This will place the binary in your ${GOPATH}/bin directory.

Testing

The SDK and CLI can be tested independently via make:

make test-sdk
make test-cli

Contributing

  1. Fork this repo
  2. Make your changes
  3. Submit a Pull Request

Authors