nomad-mirage-plugin/main.go

19 lines
357 B
Go
Raw Normal View History

package main
import (
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad-runtime-driver-skeleton/hello"
"github.com/hashicorp/nomad/plugins"
)
func main() {
// Serve the plugin
plugins.Serve(factory)
}
// factory returns a new instance of a nomad driver plugin
func factory(log log.Logger) interface{} {
return hello.NewPlugin(log)
}