mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-31 09:48:42 +00:00
12 lines
360 B
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{}
|
|
}
|