MCPcopy
hub / github.com/github/gh-ost / OnValidated

Method OnValidated

go/logic/hooks.go:52–62  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

50}
51
52func (c CompositeHooks) OnValidated() error {
53 for _, h := range c {
54 if h == nil {
55 continue
56 }
57 if err := h.OnValidated(); err != nil {
58 return err
59 }
60 }
61 return nil
62}
63
64func (c CompositeHooks) OnRowCountComplete() error {
65 for _, h := range c {

Callers

nothing calls this directly

Calls 1

OnValidatedMethod · 0.65

Tested by

no test coverage detected