diff options
Diffstat (limited to 'src/database.py')
-rw-r--r-- | src/database.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/database.py b/src/database.py new file mode 100644 index 0000000..478f62e --- /dev/null +++ b/src/database.py @@ -0,0 +1,19 @@ +import db.init + +_database = None + +def init(path): + global _database + _database = db.init.init(path) + +def cursor(): + global _database + return _database.cursor() + +def commit(): + global _database + _database.commit() + +def close(): + global _database + _database.close() |