mirror of
https://github.com/hyprwm/hyprpolkitagent.git
synced 2025-12-20 04:00:03 +01:00
7 lines
155 B
C++
7 lines
155 B
C++
#include "core/Agent.hpp"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
g_pAgent = std::make_unique<CAgent>();
|
|
|
|
return g_pAgent->start() == false ? 1 : 0;
|
|
}
|