this is intersting maybe what I'm doing. I'm not current AI. that is for sure

This commit is contained in:
Jeff Carr 2025-09-03 21:38:06 -05:00
parent d6cd7fc88f
commit 961ca8f41e
1 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import (
"strings" "strings"
"github.com/google/uuid" "github.com/google/uuid"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log" "go.wit.com/log"
"google.golang.org/protobuf/proto" "google.golang.org/protobuf/proto"
) )
@ -185,3 +186,8 @@ func (f *Forge) findPatch(newpatch *Patch) bool {
return false return false
} }
func (f *Forge) IsPatchApplied(newpatch *Patch) (*gitpb.Repo, bool) {
log.Info("todo: find namespace and repo for patch", newpatch.Filename)
return nil, false
}