api.py 107 B

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