Files
darwincereska 4a0aabce43 feat: first init
- Simple unix daemon
- Python, Go, and C client
2026-04-13 22:34:27 -04:00

15 lines
201 B
Go

package main
import "github.com/log-chipper/chipper"
func main() {
client, err := chipper.NewClient()
if err != nil {
panic(err)
}
defer client.Close()
client.Log("info", "hello from go")
}