Init database module

This commit is contained in:
EstrellaXD
2023-04-28 13:11:33 +08:00
parent 9866cc972d
commit 2a1d2e3e17
3 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from sqlite3 import Cursor
from module.conf import settings, DATA_PATH
class DataConnector:
def __init__(self):
pass
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
pass