Christian Decker
5 years ago
committed by
Rusty Russell
3 changed files with 26 additions and 2 deletions
@ -0,0 +1,18 @@ |
|||
#include <ccan/array_size/array_size.h> |
|||
#include <plugins/libplugin.h> |
|||
|
|||
static void init(struct plugin *p, const char *buf UNUSED, |
|||
const jsmntok_t *config UNUSED) |
|||
{ |
|||
} |
|||
|
|||
static const struct plugin_command commands[] = { |
|||
}; |
|||
|
|||
|
|||
int main(int argc, char *argv[]) |
|||
{ |
|||
setup_locale(); |
|||
plugin_main(argv, init, PLUGIN_RESTARTABLE, commands, ARRAY_SIZE(commands), |
|||
NULL, 0, NULL, 0, NULL); |
|||
} |
Loading…
Reference in new issue