Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APISettings ¶
type Credentials ¶
type ErrorResponse ¶
type ErrorResponse struct {
Message string `json:"message"`
}
type GuacamoleSupport ¶
type GuacamoleSupport struct {
Enabled bool `json:"guac_enabled"`
}
type LDAPSettings ¶
type RefreshToken ¶
type RefreshToken struct {
Token string `json:"refresh_token"`
}
RefreshToken - TODO comment
type Store ¶
type Store interface { // Set a value for a given key Set(k string, v string, expiration time.Duration) error // Get a value from our key-value store Get(k string) (v string, found bool, err error) // Delete a key Delete(k string) (err error) // Close a connection with our key-value store Close() error }
Click to show internal directories.
Click to hide internal directories.