university-final-iot-backend/app/mod_accounts/__init__.py

10 lines
151 B
Python

from flask import Blueprint
accounts = Blueprint('accounts', __name__)
# Routes
@accounts.route("/")
def hello():
return "Hello from accounts!"