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
+15
View File
@@ -0,0 +1,15 @@
/**
* @file chipper_client.h
* @brief The C client sdk for connecting to the Chipper Socket
*/
#ifndef CHIPPER_CLIENT_H
#define CHIPPER_CLIENT_H
int chipper_client_init(const char *socket_path, const char *service, const char *source);
void chipper_client_close(void);
int chipper_client_log(const char *level, const char *fmt, ...);
#endif // CHIPPER_CLIENT_H