21 lines
586 B
Python
21 lines
586 B
Python
|
|
import _common
|
|
|
|
class Contribution(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'getMyContributionPoint',
|
|
'desc': '我的贡献点',
|
|
'group': 'Contribution',
|
|
'url': 'webapp/index.php?c=Contribution&a=getMyContributionPoint',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['point', 0, '贡献点']
|
|
]
|
|
},
|
|
] |