]> jfr.im git - irc/quakenet/newserv.git/blame - chanserv/usercmds/chanserv_usercmds.c
TRUSTS: require sqlite
[irc/quakenet/newserv.git] / chanserv / usercmds / chanserv_usercmds.c
CommitLineData
ee8cd7d0 1#include "../../dbapi/dbapi.h"
7f32dbdf
P
2#include "../chanserv.h"
3#include "../../lib/version.h"
4
5MODULE_VERSION(QVERSION);
b3565978 6
ee8cd7d0 7DBModuleIdentifier q9udbid;
b3565978
CP
8
9void usercmds_init(void) {
ee8cd7d0 10 q9udbid = dbgetid();
b3565978
CP
11}
12
13void usercmds_fini(void) {
ee8cd7d0 14 dbfreeid(q9udbid);
b3565978
CP
15}
16