Last active
August 29, 2015 13:56
-
-
Save siscia/9160923 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
app = Flask(__name__) | |
@app.route("/clean-up") | |
def cleanUp(): | |
"Clean the database from the old users" | |
cleanDatabase() | |
@app.route("/bill") | |
def bill(): | |
"Bill the customers" | |
billCustumer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment