You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
5 years ago
|
#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);
|
||
|
}
|