Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KhumuConfig ¶
type KhumuConfig struct {
Host string `yaml:"host"`
Port string `yaml:"port"`
DB struct {
Kind string `yaml:"kind"`
SQLite3 struct {
FilePath string `yaml:"filePath"`
} `yaml:"sqlite3"`
MySQL struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
DatabaseName string `yaml:"databaseName"`
User string `yaml:"user"`
Password string `yaml:"password"`
}
} `yaml:"db"`
Sns struct {
TopicArn string `yaml:"topic_arn"`
} `yaml:"sns"`
Redis struct {
Addr string `yaml:"addr"`
} `yaml:"redis"`
Khumu struct {
CommandCenter struct {
RootURL string `yaml:"root_url"`
} `yaml:"command_center"`
} `yaml:"khumu"`
}
var ( Config *KhumuConfig Location *time.Location )
Click to show internal directories.
Click to hide internal directories.