Thomas Boyer-Chammard c69ff72110
Format Svc and add to CI (#3978)
* Format Svc and add to CI

* Fix comlogger include

* fix assert UTs

* Fix static analysis warning

* formatting
2025-08-04 16:21:47 -07:00

20 lines
405 B
C++

#ifndef FILEHANDLING_PINGENTRIES_HPP
#define FILEHANDLING_PINGENTRIES_HPP
namespace PingEntries {
namespace FileHandling_fileDownlink {
enum { WARN = 3, FATAL = 5 };
}
namespace FileHandling_fileManager {
enum { WARN = 3, FATAL = 5 };
}
namespace FileHandling_fileUplink {
enum { WARN = 3, FATAL = 5 };
}
namespace FileHandling_prmDb {
enum { WARN = 3, FATAL = 5 };
}
} // namespace PingEntries
#endif