Refactor GitProvider to take in auth token

This commit is contained in:
2026-05-05 19:29:24 +02:00
parent ce4ed9744b
commit b0dc65cb3e
4 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ type DeployResult struct {
}
type GitProvider interface {
FetchAndDeployBranch(owner, repo, branch, authToken, destPath string) (*DeployResult, error)
FetchAndDeployBranch(owner, repo, branch, destPath string) (*DeployResult, error)
}