mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
10 lines
222 B
Python
10 lines
222 B
Python
import sys
|
|
from worlds.ahit.Client import launch
|
|
import Utils
|
|
import ModuleUpdate
|
|
ModuleUpdate.update()
|
|
|
|
if __name__ == "__main__":
|
|
Utils.init_logging("AHITClient", exception_logger="Client")
|
|
launch(*sys.argv[1:])
|