Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Communication ¶
type Communication struct { Id int64 `db:"id,omitempty" json:"id"` Method string `db:"method" json:"method"` Host string `db:"host" json:"-"` Port int `db:"port" json:"-"` Username string `db:"username" json:"-"` Password string `db:"password" json:"-"` Var1 string `db:"var1" json:"-"` Var2 string `db:"var2" json:"-"` ApiKey string `db:"api_key" json:"-"` ApiSecret string `db:"api_secret" json:"-"` Enabled bool `db:"enabled" json:"enabled"` Limits int64 `db:"limits" json:"-"` Removable bool `db:"removable" json:"-"` CreatedAt time.Time `db:"created_at" json:"created_at"` }
type DbConfig ¶ added in v0.27.7
type DbConfig struct { DbConn string `yaml:"connection"` DbHost string `yaml:"host"` DbUser string `yaml:"user"` DbPass string `yaml:"password"` DbData string `yaml:"database"` DbPort int `yaml:"port"` Project string `yaml:"-"` Description string `yaml:"-"` Domain string `yaml:"-"` Username string `yaml:"-"` Password string `yaml:"-"` Email string `yaml:"-"` Error error `yaml:"-"` }
type FailureData ¶ added in v0.27.7
type FailureData struct {
Issue string
}
type PluginJSON ¶ added in v0.27.7
type PluginRepos ¶ added in v0.27.7
type PluginRepos struct {
Plugins []PluginJSON
}
type User ¶ added in v0.27.7
type User struct { Id int64 `db:"id,omitempty" json:"id"` Username string `db:"username" json:"username"` Password string `db:"password" json:"-"` Email string `db:"email" json:"-"` ApiKey string `db:"api_key" json:"api_key"` ApiSecret string `db:"api_secret" json:"-"` Admin bool `db:"administrator" json:"admin"` CreatedAt time.Time `db:"created_at" json:"created_at"` }
Click to show internal directories.
Click to hide internal directories.