mirror of
https://github.com/hyprwm/hyprpolkitagent.git
synced 2025-12-20 05:10:17 +01:00
8 lines
155 B
C++
8 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;
|
||
|
|
}
|