diff options
Diffstat (limited to '4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c index 834d717..8bac074 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c @@ -30,6 +30,7 @@ #include "../4a-hal-manager/4a-hal-manager-cb.h" #include "4a-hal-controllers-api-loader.h" +#include "4a-hal-controllers-cb.h" // Default api to print log when apihandle not available afb_dynapi *AFB_default; @@ -57,6 +58,7 @@ static struct HalUtlApiVerb CtlHalDynApiStaticVerbs[] = { /* VERB'S NAME FUNCTION TO CALL SHORT DESCRIPTION */ { .verb = "ping", .callback = HalMgrPing, .info = "Ping test for DynApi"}, + { .verb = "list", .callback = HalCtlsListVerbs, .info = "List available verbs for this api"}, { .verb = NULL } // Marker for end of the array }; |