cosmium/api/config/models.go

20 lines
417 B
Go
Raw 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
ExplorerPath string
Port int
Host string
TLS_CertificatePath string
TLS_CertificateKey string
InitialDataFilePath string
PersistDataFilePath string
2024-02-21 23:40:54 +02:00
DisableAuth bool
2024-02-27 21:58:57 +02:00
DisableTls bool
Debug bool
2024-02-10 17:17:34 +02:00
}