uniapp,h5

1234567891011121314
  1. from app.libs.redprint import Redprint
  2. # 初始化红图
  3. api = Redprint('book')
  4. @api.route('/get')
  5. def get_user():
  6. return "I am book get method"
  7. @api.route('/create')
  8. def get_book():
  9. return "create book method"