hyprpolkitagent/src/main.cpp

8 lines
155 B
C++
Raw Normal View History

2024-10-14 17:55:01 +01:00
#include "core/Agent.hpp"
int main(int argc, char* argv[]) {
g_pAgent = std::make_unique<CAgent>();
return g_pAgent->start() == false ? 1 : 0;
}