2 * main.c - Runs the Atlantis server
3 * (c) 2008 Sander Dijkhuis <sander.dijkhuis@gmail.com>
4 * Still need to decide about licensing. Ask if interested.
7 #include <dbus/dbus-glib.h>
9 #include "atlantis-server.h"
12 main (int argc
, char *argv
[])
14 AtlantisServer
*server
;
15 GMainLoop
*loop
= g_main_loop_new (NULL
, TRUE
);
19 server
= atlantis_server_new ();
21 g_main_loop_run (loop
);