现有demo

demo模块路径:

app/demo/test.go

框架运行起来后,可访问如下 demo url:

http://127.0.0.1:8000/demo/test/index
http://127.0.0.1:8000/demo/test/index1
http://127.0.0.1:8000/demo/test/index2
http://127.0.0.1:8000/demo/test/redis_test
http://127.0.0.1:8000/demo/test/http_test

这些url的路由 都是在demo模块进行配置的,demo模块的路由配置文件
app/demo/router.go

新增一个模块

1、可复制一个app/demo目录出来,如 user

2、在 app/user 模块下 建立 *.go 文件,负责不同的接口处理

3、配置路由
先配置 app/user/router.go 模块的路由,配置好模块路由后,把模块路由加入到总路由文件中去。

总路由文件 app/routers.go 加入

user.ReturnRoute(router)