uotp/bin/uotp

15 lines
272 B
Python

#!/usr/bin/env python3
import argparse
import multiprocessing as mp
import logging
from os.path import join as join_path
from uotp import logger
try:
from uotp.app import main
main()
except Exception as err:
logger.exception("Error Occurred")
print(err)