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
+20
View File
@@ -0,0 +1,20 @@
/**
* @file chipper_common.h
* @brief Common definitions and small helpers
*/
#ifndef CHIPPER_COMMON_H
#define CHIPPER_COMMON_H
#include <stdio.h>
#define CHIPPER_BUFFER_SIZE 4096
typedef struct {
const char *socket_path;
const char *log_path;
} ChipperOptions;
void chipper_die(const char *msg);
#endif // CHIPPER_COMMON_H