standard.h 444 B

12345678910111213141516171819202122232425
  1. /**
  2. * space_server 对外接口标准功能。
  3. *
  4. * © 2020 成都河狸智能科技有限责任公司。保留所有权利。
  5. *
  6. * 作者: zhq1229
  7. */
  8. #ifndef __SERVER_STANDARD_H__
  9. #define __SERVER_STANDARD_H__
  10. #include <space_lib/space_lib.h>
  11. namespace server {
  12. namespace standard {
  13. int init(Json::Value &conf);
  14. int shutdown();
  15. } // namespace standard
  16. } // namespace server
  17. #endif // __SERVER_STANDARD_H__