summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorAlex Goodman <wagoodman@users.noreply.github.com>2018-10-06 09:45:08 -0400
committerGitHub <noreply@github.com>2018-10-06 09:45:08 -0400
commitc599ca5ad20bf52b6fde06f9462d8830cab90b7f (patch)
treee0f8cb1d1157b40e6631e566a1543a79e7d09ffa /main.go
parentae4335620a2ca497ad0326b761dc4214c96f6acc (diff)
a few low hanging perf improvements (#16)
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.go b/main.go
index d6e186f..4f4451c 100644
--- a/main.go
+++ b/main.go
@@ -20,8 +20,11 @@
package main
-import "github.com/wagoodman/dive/cmd"
+import (
+ "github.com/wagoodman/dive/cmd"
+)
func main() {
cmd.Execute()
}
+