# README
Atlantis SDK for Go
Go library for creating custom run
commands for Atlantis.
go get github.com/pbar1/atlantis-go
Usage
package main
import (
"log"
atlantis "github.com/pbar1/atlantis-go"
)
func main() {
step, err := atlantis.NewRunStep()
if err != nil {
log.Fatal(err)
}
log.Printf("Pull request number: %d\n", step.PullNum)
log.Printf("Terraform plan file: %s\n", step.Planfile)
}