AfterApply is a documentation-only interface describing hooks that run after values are set.
| 20 | |
| 21 | // AfterApply is a documentation-only interface describing hooks that run after values are set. |
| 22 | type AfterApply interface { |
| 23 | // This is not the correct signature - see README for details. |
| 24 | AfterApply(args ...any) error |
| 25 | } |
| 26 | |
| 27 | // AfterRun is a documentation-only interface describing hooks that run after Run() returns. |
| 28 | type AfterRun interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…