provider/atlas: bin

This commit is contained in:
Mitchell Hashimoto 2014-12-09 18:59:07 -08:00
parent aeecabbb33
commit f0de69b3c5
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package main
import (
"github.com/hashicorp/terraform/builtin/providers/atlas"
"github.com/hashicorp/terraform/plugin"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: atlas.Provider,
})
}

View File

@ -0,0 +1 @@
package main