Add class to database module

This commit is contained in:
mmcw-dev 2018-01-11 06:24:45 -05:00
parent 680cac7fb1
commit 465993ce33
1 changed files with 8 additions and 1 deletions

View File

@ -12,5 +12,12 @@ const actionTable = `CREATE TABLE IF NOT EXISTS actions (
light TEXT, light TEXT,
dir INTEGER, dir INTEGER,
sequence INTEGER sequence INTEGER
);`
);` class DB {
constructor () {
}
}
module.exports = DB