mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 09:13:23 -05:00
feat: first init
- Simple unix daemon - Python, Go, and C client
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user