Files
old-xmpploadtesting/config/models.go

28 lines
610 B
Go
Raw Normal View History

2021-09-14 19:25:37 +02:00
package config
// Config stores application configuration
type Config struct {
Service Service
Credentials Credentials
GeneralOptions GeneralOptions
}
// Service contains configuration for service
type Service struct {
Port string
Address string
Domain string
}
// Credentials contains information about client credentials
type Credentials struct {
CredentialsFileLocation string
}
// GeneralOptions contains information for general configuration options
type GeneralOptions struct {
2021-09-27 10:23:31 +02:00
PresenceStatusDelay int64
CommandReplyDelay int
ExecuteSingleStatusMessage bool
2021-09-14 19:25:37 +02:00
}