Skip to content

Commit

Permalink
coding coffee episode 1
Browse files Browse the repository at this point in the history
  • Loading branch information
frncspeck committed Nov 2, 2022
0 parents commit ab550f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# between2cracks
11 changes: 11 additions & 0 deletions flask_app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# A very simple Flask Hello World app for you to get started with...

from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello_world():
return "Hello from Between2Cracks!"

0 comments on commit ab550f4

Please sign in to comment.