platypush/platypush/app/__main__.py

8 lines
98 B
Python

import sys
from ._app import main
if __name__ == '__main__':
sys.exit(main(*sys.argv[1:]))