api.py 118 B

123456789
  1. from flask import Blueprint
  2. bp = Blueprint("api", __name__)
  3. @bp.route("/")
  4. def home():
  5. return "hello world!!"