Files
atlantis/server/events/command_context.go
Luke Kysow c59b422949 Fmt
2017-10-18 06:44:44 -07:00

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
}