mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-28 07:07:54 +01:00
6 lines
133 B
Python
6 lines
133 B
Python
from peewee import SqliteDatabase
|
|
from database.config import DB_NAME
|
|
|
|
def get_sqlite_database():
|
|
return SqliteDatabase(DB_NAME)
|