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

30 lines
673 B
Python

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