Removed old `bin/platypush` script.

It's already been replaced by the setup.py entry point.
This commit is contained in:
Fabio Manganiello 2023-08-16 23:52:54 +02:00
parent 98e9abde18
commit e9dbcff1a8
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#!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: