Files
atlantis/executor.go
Luke Kysow 0cb13a9e85 Fixes #10. Renaming for consistency (#12)
Repo owner, name => repoFullName
PullID => PullNum to match GitHub API
PR => Pull to match GitHub API and avoid writing PRID anywhere
2017-05-31 16:46:49 -07:00

6 lines
119 B
Go

package main
type Executor interface {
execute(ctx *ExecutionContext, pullCtx *PullRequestContext) ExecutionResult
}