app-cloudep-wallet-service/pkg/lib/sql_client/config.go

17 lines
317 B
Go
Raw Permalink Normal View History

2025-04-16 09:24:54 +00:00
package sql_client
import "time"
type Config struct {
User string
Password string
Host string
Port string
Database string
MaxIdleConns int
MaxOpenConns int
ConnMaxLifetime time.Duration
InterpolateParams bool
LogLevel string
}