diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 16:27:19 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 17:12:14 +0200 |
commit | 6460512ea04190c0619e9744e085d52b66517a6c (patch) | |
tree | ff1426d0c62f9e5354b3b7174be5285f0711b3eb /src/test-binding.c | |
parent | fe59b457d752c048afce8f48cd7ed9e97e603d51 (diff) |
Began Mock API implementation WIP
Change-Id: I30782e272cad5da75950d7983f9504dac6d24676
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/test-binding.c')
-rw-r--r-- | src/test-binding.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test-binding.c b/src/test-binding.c index a1939e2..1668360 100644 --- a/src/test-binding.c +++ b/src/test-binding.c @@ -22,7 +22,7 @@ #include <time.h> #include "test-binding.h" - +#include "fapis.h" // default api to print log when apihandle not avaliable afb_dynapi *AFB_default; @@ -31,6 +31,7 @@ static CtlSectionT ctrlSections[] = { {.key = "resources", .loadCB = PluginConfig}, {.key = "onload", .loadCB = OnloadConfig}, {.key = "events", .loadCB = EventConfig}, + {.key = "fapis", .loadCB = FapisConfig}, {.key = NULL} }; |