package gitadapters import "io" type Adapter interface { GetDiff(owner, repo string, prID int) (io.Reader, error) }