From acc428b640c54c3f2a31e365ed0d2b741c7703f9 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sun, 23 Jun 2013 19:52:53 -0700 Subject: [PATCH] fix(omaha): follow go standards with package name The last item in a package path in Go should match the package name. This is not the case right now. Fix by making the new import path: github.com/coreos/go-omaha/omaha --- omaha.go => omaha/omaha.go | 0 omaha_test.go => omaha/omaha_test.go | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename omaha.go => omaha/omaha.go (100%) rename omaha_test.go => omaha/omaha_test.go (100%) diff --git a/omaha.go b/omaha/omaha.go similarity index 100% rename from omaha.go rename to omaha/omaha.go diff --git a/omaha_test.go b/omaha/omaha_test.go similarity index 100% rename from omaha_test.go rename to omaha/omaha_test.go