初始Golang的Beego框架

/**
 * 安装Beego框架命令
 * https://beego.me/
*/
	go get github.com/astaxie/beego
/**
 * 安装bee工具命令
*/
	go get github.com/beego/bee
/**
 * 通过bee工具创建项目
*/
	bee new 项目名称(自定义)
/*
 * 运行项目命令
*/
	bee run

猜你喜欢

转载自blog.csdn.net/JiaZhaoMeng/article/details/89671270