17 lines
191 B
Go
17 lines
191 B
Go
package settings
|
|
|
|
type Config struct {
|
|
Debug bool
|
|
Jira JiraConfig
|
|
}
|
|
|
|
type JiraConfig struct {
|
|
Url string
|
|
Auth AuthConfig
|
|
}
|
|
|
|
type AuthConfig struct {
|
|
Username string
|
|
Password string
|
|
}
|