mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 17:23:23 -05:00
4a0aabce43
- Simple unix daemon - Python, Go, and C client
13 lines
191 B
C
13 lines
191 B
C
/**
|
|
* @file chipper_daemon
|
|
*/
|
|
|
|
#ifndef CHIPPER_DAEMON_H
|
|
#define CHIPPER_DAEMON_H
|
|
|
|
#include "chipper_common.h"
|
|
|
|
int chipper_run_daemon(const ChipperOptions *opts);
|
|
|
|
#endif // CHIPPER_DAEMON_H
|