From c4bdcd4152c34b1bf56d639660850057be46b165 Mon Sep 17 00:00:00 2001 From: wuyanwen Date: Sat, 15 Feb 2020 18:05:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Ewechat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- catch/wechat/controller/Reply.php | 8 ++++++++ catch/wechat/module.json | 13 +++++++++++++ catch/wechat/route.php | 5 +++++ 3 files changed, 26 insertions(+) create mode 100644 catch/wechat/module.json create mode 100644 catch/wechat/route.php diff --git a/catch/wechat/controller/Reply.php b/catch/wechat/controller/Reply.php index eaeda9a..b4eed9d 100644 --- a/catch/wechat/controller/Reply.php +++ b/catch/wechat/controller/Reply.php @@ -8,3 +8,11 @@ * @copyright By CatchAdmin * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt */ +namespace catchAdmin\wechat\controller; + +use catcher\base\CatchController; + +class Reply extends CatchController +{ + +} diff --git a/catch/wechat/module.json b/catch/wechat/module.json new file mode 100644 index 0000000..24d4a77 --- /dev/null +++ b/catch/wechat/module.json @@ -0,0 +1,13 @@ +{ + "name": "", + "alias": "wechat", + "description": "", + "keywords": [], + "order": 0, + "services": [ + "" + ], + "aliases": {}, + "files": [], + "requires": [] +} diff --git a/catch/wechat/route.php b/catch/wechat/route.php new file mode 100644 index 0000000..2c5c01d --- /dev/null +++ b/catch/wechat/route.php @@ -0,0 +1,5 @@ +get('index', 'controller@method'); +