Terarea  2
The automation project
Loading...
Searching...
No Matches
__main__.py
Go to the documentation of this file.
1"""
2The file in charge of allowing the files in this folder to be run as is, without any issues
3"""
4
5import sys
6try:
7 from .server_main import Main, CONST
8except ImportError:
9 from server_main import Main, CONST
10
11MI = Main(
12 success=CONST.SUCCESS,
13 error=CONST.ERROR
14)
15sys.exit(MI.main())