Files
atlantis/server/events/help_executor.go

12 lines
360 B
Go

package events
// HelpExecutor executes the help command.
type HelpExecutor struct{}
// Execute executes the help command.
func (h *HelpExecutor) Execute(ctx *CommandContext) CommandResponse {
// We don't actually need to do anything since the comment renderer
// will see that it is a help command and render the help comment.
return CommandResponse{}
}