Created
October 12, 2012 23:35
-
-
Save rdegges/3882273 to your computer and use it in GitHub Desktop.
Flask URL Example
This file contains hidden or 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
"""Flask URL configuration example.""" | |
from myapp import app | |
@app.route('/create') | |
def create_account(): | |
pass | |
@app.route('/delete') | |
def delete_account(): | |
pass | |
@app.route('/edit') | |
def edit_account(): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment