This repository has been archived on 2026-07-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
edo/database/db.py
2026-07-14 01:16:33 +03:00

10 lines
149 B
Python

import sqlite3
from config import DB_PATH
def get_connection():
return sqlite3.connect(
DB_PATH,
check_same_thread=False
)