mirror of
https://github.com/netbirdio/management-refactor.git
synced 2026-05-22 17:12:59 -07:00
8 lines
246 B
Go
8 lines
246 B
Go
package db
|
|
|
|
type config struct {
|
|
Engine string `env:"NB_STORE_ENGINE" envDefault:"sqlite"`
|
|
PostgresDsn string `env:"NB_STORE_ENGINE_POSTGRES_DSN" envDefault:""`
|
|
DataDir string `env:"NB_STORE_DATA_DIR" envDefault:"/var/lib/netbird"`
|
|
}
|