Assert that NodeRootVariable implements Execute (#1857)

Signed-off-by: Jon Johnson <jon.johnson@chainguard.dev>
This commit is contained in:
Jon Johnson 2024-07-26 04:32:33 -07:00 committed by GitHub
parent ba22acc00a
commit a003782fec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,6 +31,7 @@ type NodeRootVariable struct {
}
var (
_ GraphNodeExecutable = (*NodeRootVariable)(nil)
_ GraphNodeModuleInstance = (*NodeRootVariable)(nil)
_ GraphNodeReferenceable = (*NodeRootVariable)(nil)
)