23 lines
561 B
Python
23 lines
561 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class HeroSkill(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'getSkillList',
|
|
'desc': '技能列表',
|
|
'group': 'HeroSkill',
|
|
'url': 'webapp/index.php?c=HeroSkill&a=getSkillList',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['data', [], '技能itemId']
|
|
]
|
|
}
|
|
]
|