mirror of
https://github.com/cadmium-im/zirconium-go.git
synced 2024-11-23 19:02:20 +00:00
19 lines
318 B
Go
19 lines
318 B
Go
package core
|
|
|
|
type Config struct {
|
|
ServerDomains []string `comment:"Server domain names (e.g. example.com)"`
|
|
ServerID string
|
|
Websocket struct {
|
|
Host string
|
|
Port int
|
|
Endpoint string
|
|
}
|
|
Mongo struct {
|
|
Host string
|
|
Port int
|
|
User string
|
|
Password string
|
|
Database string
|
|
}
|
|
}
|