core-lightning/plugins/bkpr/db.h
niftynei fb951dbbd6 bkpr: first attempt at database code for accounting
A database scheme and first attempt at drivers for the bookkeeper
database.

Also moves bookkeeper plugin into its own subdirectory
2022-07-28 12:08:18 +09:30

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 */