Initial commit

This commit is contained in:
2026-07-14 01:16:33 +03:00
commit 92f04e0e8a
29 changed files with 2454 additions and 0 deletions

10
database/db.py Normal file
View File

@@ -0,0 +1,10 @@
import sqlite3
from config import DB_PATH
def get_connection():
return sqlite3.connect(
DB_PATH,
check_same_thread=False
)