Skip to content

Commit

Permalink
#20: Add index.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Aug 22, 2014
1 parent b3fa6ac commit 049909b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/index.py
@@ -0,0 +1,15 @@
## index.py
# This file currently tests the basic implementation of the 'Flask',
# web-framework.

#!/usr/bin/python

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
return 'Hello World!'

if __name__ == '__main__':
app.run()

0 comments on commit 049909b

Please sign in to comment.