summaryrefslogtreecommitdiffstats
path: root/test-server.c
blob: cac62e6a3fe21ae90f4a1e4f74bacdb6ad127034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "kiro-server.h"


int main(void)
{
    KiroServer *server = g_object_new(KIRO_TYPE_SERVER, NULL);
    kiro_server_start(server, "127.0.0.1", "60010");
    return 0; 
}