cosmium/api/config/models.go

21 lines
489 B
Go
Raw Permalink Normal View History

2024-02-10 17:17:34 +02:00
package config
type ServerConfig struct {
DatabaseAccount string
DatabaseDomain string
DatabaseEndpoint string
2024-02-21 23:40:54 +02:00
AccountKey string
2024-11-14 18:42:17 +02:00
ExplorerPath string
Port int
Host string
TLS_CertificatePath string
TLS_CertificateKey string
InitialDataFilePath string
PersistDataFilePath string
DisableAuth bool
DisableTls bool
Debug bool
ExplorerBaseUrlLocation string
2024-02-10 17:17:34 +02:00
}