mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
11 lines
141 B
Python
11 lines
141 B
Python
import sys
|
|
from . import main
|
|
|
|
rc = 1
|
|
try:
|
|
main()
|
|
rc = 0
|
|
except Exception as e:
|
|
print('Error:', e, file=sys.stderr)
|
|
sys.exit(rc)
|