Initial commit

This commit is contained in:
CChen616
2024-03-19 15:48:17 +08:00
parent 2ae601ba66
commit 1023fb5796
82 changed files with 43002 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#ifndef MAKERBASE_PARSE_MESSAGE
#define MAKERBASE_PARSE_MESSAGE
/**
* 通过发送的 method id 来获得相应的回调信息,使用不同的 response type id 可以通过
* switch 的方式,快速找到相应的解析方式
*
*/
void *json_parse(void *arg);
#endif