mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-01 16:56:20 +00:00
19 lines
342 B
Python
19 lines
342 B
Python
import logging
|
|
from ui import launch
|
|
from src.models import init_db
|
|
from dotenv import load_dotenv
|
|
|
|
|
|
def main():
|
|
copyright()
|
|
credits()
|
|
print("Viral Factory by Paillat-dev - paill.at - AGPLv3 License")
|
|
load_dotenv()
|
|
logging.basicConfig(level=logging.INFO)
|
|
init_db()
|
|
launch()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|