certimate/internal/workflow/engine/executor_start.go
2025-08-20 22:20:53 +08:00

22 lines
381 B
Go

package engine
import (
"log/slog"
)
type startNodeExecutor struct {
nodeExecutor
}
func (e *startNodeExecutor) Execute(execCtx *NodeExecutionContext) (*NodeExecutionResult, error) {
execRes := &NodeExecutionResult{}
return execRes, nil
}
func newStartNodeExecutor() NodeExecutor {
return &startNodeExecutor{
nodeExecutor: nodeExecutor{logger: slog.Default()},
}
}