Files
soul-yongping/scripts/test/util.py

13 lines
333 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""测试工具函数"""
def admin_headers(token):
"""管理端请求头"""
return {"Authorization": f"Bearer {token}", "Content-Type": "application/json"}
def miniapp_headers(token):
"""小程序请求头"""
return {"Authorization": f"Bearer {token}", "Content-Type": "application/json"}