Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 739 Bytes

Readme.md

File metadata and controls

30 lines (21 loc) · 739 Bytes

go-soletta

Provides the go bindings for Soletta™ Project library.

Build status: Build Status
Documentation: GoDoc

Deployment

go get github.com/solettaproject/go-soletta/soletta

Usage

import "github.com/solettaproject/go-soletta/soletta"

A minimal example:

ok := soletta.Init()
if ok {
    soletta.Run()
    soletta.Shutdown()
}