cosmium/api/config/models.go

20 lines
417 B
Go
Raw Normal View History

2024-02-10 15:17:34 +00:00
package config
type ServerConfig struct {
DatabaseAccount string
DatabaseDomain string
DatabaseEndpoint string
2024-02-21 21:40:54 +00:00
AccountKey string
ExplorerPath string
Port int
Host string
TLS_CertificatePath string
TLS_CertificateKey string
InitialDataFilePath string
PersistDataFilePath string
2024-02-21 21:40:54 +00:00
DisableAuth bool
2024-02-27 19:58:57 +00:00
DisableTls bool
Debug bool
2024-02-10 15:17:34 +00:00
}