mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-01 09:00:01 +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()
|