game2005api/doc/SignController.py
2021-11-17 15:55:16 +08:00

50 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
import _common
class SignController(object):
def __init__(self):
self.apis = [
{
'desc': 'signInfo',
'url': 'webapp/index.php?c=SignController&a=signInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'signReward',
'url': 'webapp/index.php?c=SignController&a=signReward',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'signDoubleReward',
'url': 'webapp/index.php?c=SignController&a=signDoubleReward',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getSignOrder',
'url': 'webapp/index.php?c=SignController&a=getSignOrder',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]