32 lines
769 B
Go
32 lines
769 B
Go
package app
|
|
|
|
type PluginOptions struct {
|
|
GitlabUrl string `json:"gitlab_url"`
|
|
Port int `json:"port"`
|
|
AuthToken string `json:"auth_token"`
|
|
LogPath string `json:"log_path"`
|
|
Debug struct {
|
|
Request bool `json:"request"`
|
|
Response bool `json:"response"`
|
|
GitlabRequest bool `json:"gitlab_request"`
|
|
GitlabResponse bool `json:"gitlab_response"`
|
|
} `json:"debug"`
|
|
ChosenMrIID int64 `json:"chosen_mr_iid"`
|
|
ConnectionSettings struct {
|
|
Proxy string `json:"proxy"`
|
|
Insecure bool `json:"insecure"`
|
|
Remote string `json:"remote"`
|
|
} `json:"connection_settings"`
|
|
}
|
|
|
|
var pluginOptions PluginOptions
|
|
var version string
|
|
|
|
func SetPluginOptions(p PluginOptions) {
|
|
pluginOptions = p
|
|
}
|
|
|
|
func SetVersion(v string) {
|
|
version = v
|
|
}
|