Web开发

注册

 

发新话题 回复该主题

使用GoGinMySQL,构建你自己 [复制链接]

1#
苯丁酸氮芥片 http://news.39.net/bjzkhbzy/180907/6511112.html

目录文件结构总览

├──api│├──controller││└──post.go│├──pository││└──post.go│├──routes││└──post.go│└──service│└──post.go├──go.mod├──go.sum├──infrastructu│├──db.go│├──env.go│└──routes.go├──main├──main.go├──models│└──post.go└──util└──sponse.go

初始化

使用以下命令在文件夹中初始化一个新的Go模块blog

gomodinitblog

上面的命令创建一个go.mod文件。它将允许您管理项目依赖项。

安装Gin

gogetgithub.

分享 转发
TOP
发新话题 回复该主题