Versions in this module Expand all Collapse all v0 v0.1.0 Jul 8, 2016 Changes in this version + type Client struct + Host string + Logger *logging.Logger + Protocol string + func NewClient(baseUrl string, logger *logging.Logger) (client *Client, err error) + func (c *Client) Send(msg Message) (err error) + type Message struct + Body string + Header string + type Worker struct + Logger *logging.Logger + Queue <-chan Message + SentryUrl string + func NewWorker(sentryUrl string, queue <-chan Message, logger *logging.Logger) *Worker + func (w *Worker) Run()