mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 07:08:19 +00:00
16 lines
307 B
Go
16 lines
307 B
Go
package events
|
|
|
|
import (
|
|
"github.com/hootsuite/atlantis/server/events/models"
|
|
"github.com/hootsuite/atlantis/server/logging"
|
|
)
|
|
|
|
type CommandContext struct {
|
|
BaseRepo models.Repo
|
|
HeadRepo models.Repo
|
|
Pull models.PullRequest
|
|
User models.User
|
|
Command *Command
|
|
Log *logging.SimpleLogger
|
|
}
|