Files
atlantis/server/events/pull_status_fetcher.go
Nish Krishnan df106ded11 Make policy checks its own apply requirement. (#61) (#1499)
* Make policy checks its own apply requirement. (#61)

* Remove warning from docs.
2021-04-13 12:46:47 -07:00

9 lines
258 B
Go

package events
import "github.com/runatlantis/atlantis/server/events/models"
// PullStatusFetcher fetches our internal model of a pull requests status
type PullStatusFetcher interface {
GetPullStatus(pull models.PullRequest) (*models.PullStatus, error)
}