11 lines
226 B
Python
11 lines
226 B
Python
from os import path
|
|
|
|
from .create import create_tables_if_not_exists
|
|
|
|
|
|
DB_PATH = 'res/db/'
|
|
DB_FILENAME = 'database.db'
|
|
|
|
if not path.exists(f'{DB_PATH}{DB_FILENAME}'):
|
|
create_tables_if_not_exists(f'{DB_PATH}{DB_FILENAME}')
|