From ea1640c6a9c9466502833a66f63cb26890108451 Mon Sep 17 00:00:00 2001 From: "derks.patrick" Date: Thu, 15 Apr 2021 18:45:00 +0200 Subject: [PATCH] add dependency for md5 hash func. Refactor imports --- api/tasks/runner.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/tasks/runner.go b/api/tasks/runner.go index 7219bb4b..e2dca9e9 100644 --- a/api/tasks/runner.go +++ b/api/tasks/runner.go @@ -6,7 +6,6 @@ import ( "encoding/json" "errors" "fmt" - "github.com/ansible-semaphore/semaphore/db" "io/ioutil" "os" "os/exec" @@ -15,7 +14,11 @@ import ( "strings" "time" + "github.com/ansible-semaphore/semaphore/api/helpers" + "github.com/ansible-semaphore/semaphore/db" + log "github.com/Sirupsen/logrus" + "github.com/ansible-semaphore/semaphore/util" )