this is intersting maybe what I'm doing. I'm not current AI. that is for sure
This commit is contained in:
parent
d6cd7fc88f
commit
961ca8f41e
|
@ -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
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue