mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-30 04:48:43 +00:00
10 lines
303 B
Go
10 lines
303 B
Go
package events
|
|
|
|
//go:generate pegomock generate -m --use-experimental-model-gen --package mocks -o mocks/mock_executor.go Executor
|
|
|
|
// Executor is the generic interface implemented by each command type:
|
|
// help, plan, and apply.
|
|
type Executor interface {
|
|
Execute(ctx *CommandContext) CommandResponse
|
|
}
|