更新了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 { type MongoDB struct {
Host string Host string `json:"host"`
Port string Port string `json:"port"`
Username string Username string `json:"username"`
Password string Password string `json:"password"`
Client *mongo.Client Client *mongo.Client
DB *mongo.Database DB *mongo.Database
} }