Files
httpbin/manage.py
T
Ian Cordasco 4870f70c0d Send/require a cookie header on digest-auth
Also fix an import.
2013-07-19 15:48:44 -05:00

19 lines
261 B
Python
Executable File

#!/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()