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


int main(void)
{
    KiroClient *client = g_object_new(KIRO_TYPE_CLIENT, NULL);
    kiro_client_connect(client, "127.0.0.1", "60010", 5000);
    return 0; 
}