mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-30 10:58:48 +00:00
9 lines
180 B
Go
9 lines
180 B
Go
package events
|
|
|
|
// CommandResponse is the result of running a Command.
|
|
type CommandResponse struct {
|
|
Error error
|
|
Failure string
|
|
ProjectResults []ProjectResult
|
|
}
|