platypush/bin/platypush

14 lines
169 B
Plaintext
Raw Normal View History

2019-03-16 23:47:01 +01:00
#!python3
import sys
from platypush.app import Application
2019-03-16 23:47:01 +01:00
if __name__ == '__main__':
app = Application.build(*sys.argv[1:])
app.run()
2019-03-16 23:47:01 +01:00
# vim:sw=4:ts=4:et: