mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-16 21:09:50 +08:00
22 lines
381 B
Go
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()},
|
|
}
|
|
}
|