mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-15 04:57:26 +00:00
14 lines
211 B
C++
14 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();
|
|
}
|