Skip to content

Commit

Permalink
Updated per pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Dec 29, 2023
1 parent a83b025 commit 3c72638
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions flask_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# SPDX-FileCopyrightText: 2023 Alec Delaney
# SPDX-License-Identifier: MIT

"""
Main entry point for the flask application
Author: Alec Delaney
"""

from flask import Flask

app = Flask(__name__)


@app.route("/")
def index():
"""Route for index (landing page)"""
return "<p>Hello, world!</p>"

0 comments on commit 3c72638

Please sign in to comment.