from flask import Blueprint


apibp = Blueprint("api", __name__, url_prefix="/api")


@apibp.route("/hello")
def hello():
    return {"message": "hello world!"}
