mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
13 lines
183 B
C++
13 lines
183 B
C++
#include <stdlib.h>
|
|
#include "Daemon.h"
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
Daemon.init(argc, argv);
|
|
if (Daemon.start())
|
|
Daemon.run ();
|
|
Daemon.stop();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|