diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2018-07-14 13:44:06 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2018-07-14 13:44:11 +0800 |
commit | f5da888617ad7b436b8019cf649d759f99e07d35 (patch) | |
tree | fbf4ff574a2c45a4de878cc1b61c6773520259cf /msb2pilot2/routers | |
parent | 38e3f07a034aa0e9579a1adcee251b94ef2784ae (diff) |
Initial commit for msb2pilot
Issue-ID: MSB-203
Change-Id: Id4ffc065d5622753c4e4839dade0add711ab004b
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'msb2pilot2/routers')
-rw-r--r-- | msb2pilot2/routers/router.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/msb2pilot2/routers/router.go b/msb2pilot2/routers/router.go new file mode 100644 index 0000000..952ced3 --- /dev/null +++ b/msb2pilot2/routers/router.go @@ -0,0 +1,10 @@ +package routers + +import ( + "msb2pilot2/controllers" + "github.com/astaxie/beego" +) + +func init() { + beego.Router("/", &controllers.MainController{}) +} |