diff options
| author | stilbruch <stilbruch@protonail.com> | 2022-02-07 19:08:24 -0600 |
|---|---|---|
| committer | stilbruch <stilbruch@protonail.com> | 2022-02-07 19:08:24 -0600 |
| commit | d5563db2611239a904eabfc46ab75ded7ca4e2e2 (patch) | |
| tree | a3f119b94e0c4416de13b99b7018af69ffd62b70 /app/app.py | |
| parent | c739021302f689c29a395745ca490d41163139ed (diff) | |
| download | Strengthy-d5563db2611239a904eabfc46ab75ded7ca4e2e2.tar.xz Strengthy-d5563db2611239a904eabfc46ab75ded7ca4e2e2.zip | |
Create basic template application
Diffstat (limited to 'app/app.py')
| -rw-r--r-- | app/app.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..2ea9126 --- /dev/null +++ b/app/app.py @@ -0,0 +1,7 @@ +from flask import Flask, render_template + +app = Flask(__name__) + +@app.route("/", methods=["GET"]) +def index(): + return render_template('base/index.html') |
