main.cpp 367 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * main.c
  3. *
  4. * Created on: 2019Äê3ÔÂ13ÈÕ
  5. * Author: root
  6. */
  7. //#include "Test/httpTest.h"
  8. //#include "Test/jsonTest.h"
  9. //#include "Sers/ServiceStation/ServiceStation.hpp"
  10. #include "Sers/Gateway/Gateway.hpp"
  11. int main()
  12. {
  13. // LoggerTest();
  14. // MqTest();
  15. //HttpTest();
  16. // JsonTest();
  17. Gateway_Start();
  18. Logger::Info("Program exited.");
  19. return 0;
  20. }