From d4a7deb594203d8fcd9be76f3a4de1bcf35bfd4e Mon Sep 17 00:00:00 2001 From: Asim Date: Mon, 25 May 2015 18:57:05 +0100 Subject: [PATCH] move proto/health to server since its only relevant to that --- server/health_checker.go | 2 +- {proto => server/proto}/health/health.pb.go | 0 {proto => server/proto}/health/health.proto | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {proto => server/proto}/health/health.pb.go (100%) rename {proto => server/proto}/health/health.proto (100%) diff --git a/server/health_checker.go b/server/health_checker.go index 1c1462ab..4d2249b7 100644 --- a/server/health_checker.go +++ b/server/health_checker.go @@ -1,7 +1,7 @@ package server import ( - "github.com/myodc/go-micro/proto/health" + "github.com/myodc/go-micro/server/proto/health" "golang.org/x/net/context" ) diff --git a/proto/health/health.pb.go b/server/proto/health/health.pb.go similarity index 100% rename from proto/health/health.pb.go rename to server/proto/health/health.pb.go diff --git a/proto/health/health.proto b/server/proto/health/health.proto similarity index 100% rename from proto/health/health.proto rename to server/proto/health/health.proto