lnd/kvdb/postgres/config.go
2021-09-21 10:44:18 +02:00

9 lines
286 B
Go

package postgres
import "time"
// Config holds postgres configuration data.
type Config struct {
Dsn string `long:"dsn" description:"Database connection string."`
Timeout time.Duration `long:"timeout" description:"Database connection timeout. Set to zero to disable."`
}