You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 使用 go mod 进行项目包管理
go mod init gin_todolist
# 下载并引入对应依赖(gin框架、gorm框架、mysql驱动)
go get -u github.com/gin-gonic/gin
go get -u gorm.io/gorm
go get -u gorm.io/driver/mysql