更新了mongodb config

This commit is contained in:
Kynix Chen 2024-08-06 15:17:11 +08:00
parent 395900144f
commit ae889abd1d

View File

@ -9,10 +9,10 @@ import (
)
type MongoDB struct {
Host string
Port string
Username string
Password string
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
Client *mongo.Client
DB *mongo.Database
}