tigi is a web framework for go language.
export GODEVELOPMODE=dev
├── main.go #入口文件
├── client/ #资源连接
├── common/ #公共函数等
├── config/ #资源连接
│ └── config.go #配置结构
├── controller/ #Api入口
├── cron/ #计划任务
├── log/ #日志目录
├── model/ #model层
├── output/ #编译打包转出目录
├── router/ #路由配置
├── st/ #数据结构定义
├── worker/ #协程池
git clone https://github.com/yunhu/tigi.git
cd tigi
make init
make
make run
make stop