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