Documentation
¶
Index ¶
Constants ¶
View Source
const ( ClientProtocolTypeHTTP string = "http" ClientProtocolTypeLocalTemplated string = "local_templated" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AnySdkArgList ¶
type AnySdkArgList interface { GetArgs() []AnySdkArg GetProtocolType() ClientProtocolType }
type AnySdkClient ¶
type AnySdkClient interface {
Do(AnySdkDesignation, AnySdkArgList) (AnySdkResponse, error)
}
type AnySdkDesignation ¶
type AnySdkDesignation interface {
GetDesignation() (interface{}, bool)
}
type AnySdkInvocation ¶
type AnySdkInvocation interface { GetDesignation() (AnySdkDesignation, bool) GetArgs() (AnySdkArgList, bool) }
type AnySdkResponse ¶
type ClientConfiguratorInput ¶
type ClientProtocolType ¶
type ClientProtocolType int
const ( HTTP ClientProtocolType = iota LocalTemplated Disallowed )
func ClientProtocolTypeFromString ¶
func ClientProtocolTypeFromString(s string) (ClientProtocolType, error)
Click to show internal directories.
Click to hide internal directories.