game2005api/doc/Quest.py
aozhiwei c5bc98d7b1 1
2021-11-25 10:27:20 +08:00

54 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
import _common
class Quest(object):
def __init__(self):
self.apis_ = [
{
'desc': 'questInfo',
'group': 'Quest',
'url': 'webapp/index.php?c=Quest&a=questInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'doubleQuestReward',
'group': 'Quest',
'url': 'webapp/index.php?c=Quest&a=doubleQuestReward',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'submitQuest',
'group': 'Quest',
'url': 'webapp/index.php?c=Quest&a=submitQuest',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'addGuildTask',
'group': 'Quest',
'url': 'webapp/index.php?c=Quest&a=addGuildTask',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]