init project

This commit is contained in:
2023-04-24 17:19:41 +08:00
parent 84729ebb66
commit cdb5a4f9cd
51 changed files with 3328 additions and 1 deletions

10
initialize/clients.go Normal file
View File

@@ -0,0 +1,10 @@
package initialize
import "Lee-WineList/client"
// 初始化数据库客户端
func initClient() {
client.InitMySQLClient()
client.InitRedisClient()
//client.InitPostgreSQLClient()
}