2018-12-17 05:27:07 -05:00
|
|
|
package context
|
|
|
|
|
|
|
|
// EndpointMetaBase contains fields we expect to be common for most context endpoints
|
|
|
|
type EndpointMetaBase struct {
|
2018-11-09 09:10:41 -05:00
|
|
|
Host string `json:",omitempty"`
|
|
|
|
SkipTLSVerify bool
|
2018-12-17 05:27:07 -05:00
|
|
|
}
|