8 lines
143 B
Python
8 lines
143 B
Python
from quart import Blueprint
|
|
|
|
dashboard = Blueprint("dashboard", __name__)
|
|
|
|
@dashboard.route("/")
|
|
async def home():
|
|
return "Dashboard page"
|