feat: gitea client

This commit is contained in:
2026-02-12 20:58:55 +01:00
parent 8583ab48ce
commit 378d008a91
9 changed files with 225 additions and 32 deletions

View File

@@ -0,0 +1,7 @@
package gitadapters
import "io"
type Adapter interface {
GetDiff(owner, repo string, prID int) (io.Reader, error)
}