Files
atlantis/server/events/command_context.go
Luke Kysow fa43febf60 Gitlab (#190)
Gitlab initial implementation
2017-11-16 13:22:28 -08:00

18 lines
377 B
Go

package events
import (
"github.com/hootsuite/atlantis/server/events/models"
"github.com/hootsuite/atlantis/server/events/vcs"
"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
VCSHost vcs.Host
}