Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.38 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

example

ctx := context.Background()

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

fmt.Println(starlinkStatus)