Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 291 Bytes

Readme.md

File metadata and controls

21 lines (15 loc) · 291 Bytes

go-soletta

Provides the go bindings for Soletta library.

Usage

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

A minimal example:

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