7 lines
129 B
Python
7 lines
129 B
Python
from apis import api_auth
|
|
|
|
|
|
@api_auth.route('/login', methods=['POST'])
|
|
def get_info():
|
|
print("登录请求")
|
|
return None |