mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
10 lines
154 B
Python
10 lines
154 B
Python
from ui import launch
|
|
from dotenv import load_dotenv
|
|
from src.models import init_db
|
|
|
|
load_dotenv()
|
|
|
|
if __name__ == "__main__":
|
|
init_db()
|
|
launch()
|