10 lines
181 B
Python
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()
|