目录文件结构总览
├──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.