mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
310 B
C++
15 lines
310 B
C++
#include "Gradido_LoginServer.h"
|
|
#include <sodium.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (sodium_init() < 0) {
|
|
/* panic! the library couldn't be initialized, it is not safe to use */
|
|
printf("error initing sodium, early exit\n");
|
|
return -1;
|
|
}
|
|
|
|
Gradido_LoginServer app;
|
|
return app.run(argc, argv);
|
|
}
|