8 lines
163 B
Python
8 lines
163 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
@main.route("/")
|
|
def home():
|
|
return "<h1>DO Tracker Online</h1><p>Welcome to the system.</p>"
|