aboutsummaryrefslogtreecommitdiff
path: root/src/custom-service.c
blob: b191baca85abaf54bfa1ba41a780c881c440b391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "notification-item-client.h"
#include "custom-service-appstore.h"

static GMainLoop * mainloop = NULL;
static CustomServiceAppstore * appstore = NULL;
 
int
main (int argc, char ** argv)
{
	g_type_init();

	appstore = CUSTOM_SERVICE_APPSTORE(g_object_new(CUSTOM_SERVICE_APPSTORE_TYPE, NULL));

	mainloop = g_main_loop_new(NULL, FALSE);
	g_main_loop_run(mainloop);

	return 0;
}