This commit is contained in:
Auric Vente
2024-07-18 02:14:03 -06:00
parent a14e36e932
commit 685f5bc686
12 changed files with 76 additions and 25 deletions

24
cromulant/main.py Normal file
View File

@@ -0,0 +1,24 @@
from __future__ import annotations
from .config import Config
from .database import Database
from .window import Window
from .ants import Ants
def main() -> None:
Config.prepare()
Database.prepare()
Database.create()
Ants.get_all()
Window.make()
Window.add_buttons()
Window.add_view()
Window.add_log()
Window.start()
if __name__ == "__main__":
main()