mdbc/utils.go

9 lines
181 B
Go
Raw Normal View History

2023-06-22 15:14:51 +00:00
package mdbc
import "fmt"
// applyURI get mongo uri from address and port
func applyURI(address string, port int) string {
return fmt.Sprintf("mongodb://%s:%d", address, port)
}