aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/tutorial/tuto-1.c
blob: 433a4ebb04802a7b033b193e4cfd5bb7b0107cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

void hello(afb_req req)
{
	AFB_REQ_DEBUG(req, "hello world");
	afb_req_success(req, NULL, "hello world");
}

const afb_verb_v2 verbs[] = {
	{ .verb="hello", .callback=hello },
	{ .verb=NULL }
};

const afb_binding_v2 afbBindingV2 = {
	.api = "tuto-1",
	.verbs = verbs
};