platypush/bin/platypush

14 lines
169 B
Python
Executable File

#!python3
import sys
from platypush.app import Application
if __name__ == '__main__':
app = Application.build(*sys.argv[1:])
app.run()
# vim:sw=4:ts=4:et: