no manage.py

This commit is contained in:
Kenneth Reitz
2014-05-16 10:19:32 -04:00
parent 02918f49bb
commit 00810d6d71
-18
View File
@@ -1,18 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from httpbin import app
from flask.ext.script import Manager, Command
manager = Manager(app)
@manager.command
def hello():
"""Hello World!"""
print r'\o/'
if __name__ == "__main__":
manager.run()