Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.44 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.44 KB

go-starlink

license commit go.dev goreportcard issues sourcegraph

Simple Golang client to interact with SpaceX Starlink dish, based on Proto files acquired from Dishy itself using GRPC Server Reflection and grpcurl tool.

For a code generation procedure, see included Makefile.

install

go get github.com/b0ch3nski/go-starlink@latest

example

import "github.com/b0ch3nski/go-starlink/starlink"

ctx := context.Background()

starlinkClient, _ := starlink.NewClient(ctx, starlink.DefaultDishyAddr)
starlinkStatus,_ := starlinkClient.Status(ctx)

fmt.Println(starlinkStatus)