summaryrefslogtreecommitdiffstats
path: root/runtime/run.go
diff options
context:
space:
mode:
authorChristian Muehlhaeuser <muesli@gmail.com>2019-07-19 12:44:16 +0200
committerChristian Muehlhaeuser <muesli@gmail.com>2019-07-19 12:44:16 +0200
commit57b1a3d5228872eba6589b0ae38ceccabd0f3344 (patch)
treed29cd07b9144ddb7a7d1b66eb820693798f0bc32 /runtime/run.go
parent09296c0214c4cc7477fe53bc79c54805899c6d19 (diff)
Fixed import order using goimports
Probably just prevents future merge conflicts.
Diffstat (limited to 'runtime/run.go')
-rw-r--r--runtime/run.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/run.go b/runtime/run.go
index 79cb36b..8def88a 100644
--- a/runtime/run.go
+++ b/runtime/run.go
@@ -2,6 +2,11 @@ package runtime
import (
"fmt"
+ "io/ioutil"
+ "log"
+ "os"
+ "strconv"
+
"github.com/dustin/go-humanize"
"github.com/logrusorgru/aurora"
"github.com/wagoodman/dive/filetree"
@@ -9,10 +14,6 @@ import (
"github.com/wagoodman/dive/runtime/ci"
"github.com/wagoodman/dive/ui"
"github.com/wagoodman/dive/utils"
- "io/ioutil"
- "log"
- "os"
- "strconv"
)
func title(s string) string {