package queue import ( "net/http" ) type SchedulerTask interface { UriPath() string SendStatusCode(statusCode int) SendError(err error) SendResponse(response *http.Response) BasicAuth() (string, string) }