8da763ec2f
- Fixed issue with webhooks
31 lines
717 B
Go
31 lines
717 B
Go
// Copyright 2014, 2016 Claudemiro Alves Feitosa Neto. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package config
|
|
|
|
// The config file
|
|
type File struct {
|
|
Host string // The host, eg: :8080 will start on 0.0.0.0:8080
|
|
User string
|
|
SSL bool
|
|
Profiling bool
|
|
SSLHost string
|
|
SSLKeyFile string
|
|
SSLCertFile string
|
|
|
|
Apps []Application
|
|
}
|
|
|
|
type Application struct {
|
|
Name string
|
|
AppID string
|
|
Key string
|
|
Secret string
|
|
OnlySSL bool
|
|
ApplicationDisabled bool
|
|
UserEvents bool
|
|
WebHooks bool
|
|
URLWebHook string
|
|
}
|