mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-04 15:58:32 +00:00
10 lines
279 B
Go
10 lines
279 B
Go
package server
|
|
|
|
type HelpExecutor struct{}
|
|
|
|
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{}
|
|
}
|