main.cc 290 B

1234567891011121314
  1. #include <drogon/drogon.h>
  2. #include <iostream>
  3. int main(int argc, char const *argv[])
  4. {
  5. if(argc<2)
  6. {
  7. std::cout << "please input the config file name" << std::endl;
  8. return -1;
  9. }
  10. drogon::app().loadConfigFile(argv[1]);
  11. drogon::app().run();
  12. return 0;
  13. }