feat: first init

- Simple unix daemon
- Python, Go, and C client
This commit is contained in:
darwincereska
2026-04-13 22:34:27 -04:00
commit 4a0aabce43
22 changed files with 3527 additions and 0 deletions
+14
View File
@@ -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")
}