Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HttpHandler ¶
type HttpHandler interface { Get(uri string, queries map[string]string) (status int, response []byte, err error) GetWithContext(ctx context.Context, uri string, headers map[string]string, queries map[string]string) (status int, response []byte, err error) Post(uri string, request []byte) (status int, response []byte, err error) PostWithContext(ctx context.Context, uri string, headers map[string]string, request []byte) (status int, response []byte, err error) }
Click to show internal directories.
Click to hide internal directories.