lnd/kvdb/postgres/config.go

10 lines
286 B
Go
Raw Normal View History

2021-07-13 12:07:48 +02:00
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."`
}