1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00
serenity/Servers/LookupServer/main.cpp
2019-11-26 19:58:25 +01:00

13 lines
211 B
C++

#include "LookupServer.h"
#include <LibCore/CEventLoop.h>
int main(int argc, char** argv)
{
(void)argc;
(void)argv;
CEventLoop event_loop;
LookupServer server;
return event_loop.exec();
}