Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type File ¶
type HTTPClient ¶
type HTTPClient interface {
Get(
url string,
params map[string]any,
headers map[string]string,
) (int64, int, []byte, error)
Post(
url string,
params []byte,
headers map[string]string,
) (int64, int, []byte, error)
Put(
url string,
params []byte,
headers map[string]string,
) (int64, int, []byte, error)
Delete(
url string,
params map[string]any,
headers map[string]string,
) (int64, int, []byte, error)
}
func NewHTTPClient ¶
func NewHTTPClient() HTTPClient
type TemplateClient ¶
func NewTemplateClient ¶
func NewTemplateClient() TemplateClient
Click to show internal directories.
Click to hide internal directories.