cln-plugin 0.1.1

A CLN plugin library. Write your plugin in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef LIGHTNING_PLUGINS_BKPR_DB_H
#define LIGHTNING_PLUGINS_BKPR_DB_H
#include "config.h"
#include <ccan/tal/tal.h>

struct plugin;
struct db;

struct db *db_setup(const tal_t *ctx, struct plugin *p, const char *db_dsn,
		    bool *created);

#endif /* LIGHTNING_PLUGINS_BKPR_DB_H */