公司准备开发一个针对塔吊行业的APP。
后台采用微服务,docker容器部署。
准备采用go进行微服务的开发。
采用beego进行restful API的开发。
第一步,访问beego的官方网站:
https://beego.me/
安装beego
go get github.com/astaxie/beego
第二步:简单的demo
package main
import "github.com/astaxie/beego"
func main() {
beego.Run()
}