Files
arma-modlist-tools/gui.py
revernomad17 5b497cf414 Add GUI
2026-04-08 13:36:49 +07:00

10 lines
181 B
Python

#!/usr/bin/env python3
"""
gui.py — Arma Mod Manager launcher.
The implementation lives in the gui/ package.
"""
from gui import run_app
if __name__ == "__main__":
run_app()