mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-28 18:24:20 +01:00
Also, we split the more sophisticated json_add helpers to avoid pulling in everything into lightning-cli, and unify the routines to print struct short_channel_id (it's ':', not '/' too). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
260 B
C
10 lines
260 B
C
#ifndef LIGHTNING_DAEMON_CONFIGDIR_H
|
|
#define LIGHTNING_DAEMON_CONFIGDIR_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
|
|
void configdir_register_opts(const tal_t *ctx,
|
|
char **config_dir, char **rpc_filename);
|
|
|
|
#endif /* LIGHTNING_DAEMON_CONFIGDIR_H */
|