移除无用的接口

This commit is contained in:
aozhiwei 2021-11-17 17:11:48 +08:00
parent 79d1141c17
commit a40eac745b
2 changed files with 0 additions and 39 deletions

View File

@ -1,20 +0,0 @@
# -*- coding: utf-8 -*-
import _common
class HelloWorld(object):
def __init__(self):
self.apis = [
{
'desc': 'sayHello',
'group': 'HelloWorld',
'url': 'webapp/index.php?c=HelloWorld&a=sayHello',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]

View File

@ -1,19 +0,0 @@
<?php
class HelloWorldController extends BaseController {
function __construct()
{
if (SERVER_ENV == _ONLINE) {
die("can't create UnitTestController");
return;
}
}
public function sayHello()
{
echo 'hellokjkjkljkljlk';
}
}