mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
14 lines
208 B
C
14 lines
208 B
C
#ifndef SKYNET_IMP_H
|
|
#define SKYNET_IMP_H
|
|
|
|
struct skynet_config {
|
|
int thread;
|
|
int mqueue_size;
|
|
const char * logger;
|
|
const char * module_path;
|
|
};
|
|
|
|
void skynet_start(struct skynet_config * config);
|
|
|
|
#endif
|