mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
fb951dbbd6
A database scheme and first attempt at drivers for the bookkeeper database. Also moves bookkeeper plugin into its own subdirectory
12 lines
259 B
C
12 lines
259 B
C
#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, char *db_dsn);
|
|
|
|
#endif /* LIGHTNING_PLUGINS_BKPR_DB_H */
|