1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-08 22:57:52 +00:00
i2pd/i2pd.cpp
2016-03-08 15:02:32 -05:00

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;
}