algTest.cpp 317 B

123456789101112131415161718
  1. /**
  2. * @project Project
  3. * @brief Use to test alg.
  4. * @author lz
  5. * @data 2023/6/16
  6. **/
  7. #include <iostream>
  8. #include "defines.hpp"
  9. #include "pahoc/mqtt_async.h"
  10. const char *ETC_FILE = ETC_PATH "/etc/test.json";
  11. int main(int argc, char **agrv) {
  12. printf("%s\n", ETC_FILE);
  13. return EXIT_SUCCESS;
  14. }