8 lines
119 B
Go
8 lines
119 B
Go
package gitadapters
|
|
|
|
import "io"
|
|
|
|
type Adapter interface {
|
|
GetDiff(owner, repo string, prID int) (io.Reader, error)
|
|
}
|