11 lines
173 B
Python
11 lines
173 B
Python
import aiosqlite
|
|
|
|
from .create import create_tables_if_not_exists
|
|
|
|
|
|
DB_PATH = 'res/db/'
|
|
DB_FILENAME = 'database.db'
|
|
|
|
|
|
create_tables_if_not_exists(f'{DB_PATH}{DB_FILENAME}')
|