api.py 108 B

12345678
  1. from flask import Blueprint
  2. bp = Blueprint("api", __name__)
  3. @bp.route("/")
  4. def main():
  5. return "Test"