package poller import "io" //Poller represent interface to poll external api type Poller interface { Poll() io.ReadCloser }