mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-26 16:57:23 +01:00
7 lines
133 B
Python
7 lines
133 B
Python
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
from database.database import create_tables, drop_tables
|
|
|
|
drop_tables()
|
|
create_tables()
|