Documentation ¶ Index ¶ type ByID func (s ByID) Len() int func (s ByID) Less(i, j int) bool func (s ByID) Swap(i, j int) type Client func NewClient() *Client func (c *Client) DoQuery(url string) (*http.Response, error) func (c *Client) Run(data string) (*thirdparty.DataParsed, error) type Signature type SignatureList Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type ByID ¶ type ByID []Signature func (ByID) Len ¶ func (s ByID) Len() int func (ByID) Less ¶ func (s ByID) Less(i, j int) bool func (ByID) Swap ¶ func (s ByID) Swap(i, j int) type Client ¶ type Client struct { Client *http.Client URL string } func NewClient ¶ func NewClient() *Client func (*Client) DoQuery ¶ func (c *Client) DoQuery(url string) (*http.Response, error) func (*Client) Run ¶ func (c *Client) Run(data string) (*thirdparty.DataParsed, error) type Signature ¶ type Signature struct { ID int `json:"id"` Text string `json:"text_signature"` } type SignatureList ¶ type SignatureList struct { Count int `json:"count"` Results []Signature `json:"results"` } Source Files ¶ View all Source files client.go Click to show internal directories. Click to hide internal directories.