Home
Softono

Balena Go

Open source MIT Go
14
Stars
3
Forks
7
Issues
14
Watchers
2 months
Last Commit

 About Balena Go

The unofficial SDK to make balena powered Go applications.

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Balena Go?

We provide expert installation service for this software. Our team will install, configure, and secure Balena Go on your server. plans start at just $30.

Balena Go

PkgGoDev




Balena Go is a library for accessing the Balena API

Balena API docs can be found here



Install

go get go.einride.tech/balena

Usage

import "go.einride.tech/balena"

Authentication

An Authentication Token can be used to authenticate with the API

You can then use your token to create a new client:

package main

import (
	"context"
	"go.einride.tech/balena"
)

const (
	token = "mytoken"
)

func main() {
	// We supply a nil http client to make use of http.DefaultClient
	client := balena.New(nil, token)
}