Files
atlantis/server/events/executor.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
}