mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
18 lines
410 B
Go
18 lines
410 B
Go
package config
|
|
|
|
type parsedFlags struct {
|
|
databasusHost *string
|
|
dbID *string
|
|
token *string
|
|
pgHost *string
|
|
pgPort *int
|
|
pgUser *string
|
|
pgPassword *string
|
|
pgType *string
|
|
pgHostBinDir *string
|
|
pgDockerContainerName *string
|
|
pgWalDir *string
|
|
|
|
sources map[string]string
|
|
}
|