mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:22:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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();
 | |
| }
 | 
