mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 22:46:40 +01:00
10 lines
286 B
Go
10 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."`
|
||
|
}
|