aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/main.go b/main.go
index 44781ae..7963a63 100644
--- a/main.go
+++ b/main.go
@@ -1,8 +1,7 @@
package main
import (
- // TODO: update the path below to match your own repository
- "github.com/hashicorp/nomad-skeleton-driver-plugin/hello"
+ exec2 "github.com/Alexis211/nomad-driver-exec2/exec2"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/plugins"
@@ -15,5 +14,5 @@ func main() {
// factory returns a new instance of a nomad driver plugin
func factory(log hclog.Logger) interface{} {
- return hello.NewPlugin(log)
+ return exec2.NewPlugin(log)
}