From bf9e734179ab24b9bcc675d9ff2db691ec187c3d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 27 Oct 2014 20:42:41 -0700 Subject: [PATCH] Rename some files, style --- packer.go => main.go | 0 packer_test.go => main_test.go | 0 panic.go | 3 ++- 3 files changed, 2 insertions(+), 1 deletion(-) rename packer.go => main.go (100%) rename packer_test.go => main_test.go (100%) diff --git a/packer.go b/main.go similarity index 100% rename from packer.go rename to main.go diff --git a/packer_test.go b/main_test.go similarity index 100% rename from packer_test.go rename to main_test.go diff --git a/panic.go b/panic.go index f02d47f2e..4f5d6a10b 100644 --- a/panic.go +++ b/panic.go @@ -2,10 +2,11 @@ package main import ( "fmt" - "github.com/mitchellh/panicwrap" "io" "os" "strings" + + "github.com/mitchellh/panicwrap" ) // This is output if a panic happens.