diff --git a/config/main.go b/conf/main.go similarity index 100% rename from config/main.go rename to conf/main.go diff --git a/store/handler/handler.go b/kv/handler/handler.go similarity index 98% rename from store/handler/handler.go rename to kv/handler/handler.go index de0677b..7a99894 100644 --- a/store/handler/handler.go +++ b/kv/handler/handler.go @@ -8,7 +8,7 @@ import ( log "github.com/micro/go-micro/v3/logger" store "github.com/micro/micro/v3/service/store" - pb "github.com/micro/services/store/proto" + pb "github.com/micro/services/kv/proto" ) type Example struct{} diff --git a/store/main.go b/kv/main.go similarity index 80% rename from store/main.go rename to kv/main.go index 2510ef2..358dd3c 100644 --- a/store/main.go +++ b/kv/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/micro/services/store/handler" + "github.com/micro/services/kv/handler" "github.com/micro/micro/v3/service" ) diff --git a/store/proto/example.pb.go b/kv/proto/example.pb.go similarity index 100% rename from store/proto/example.pb.go rename to kv/proto/example.pb.go diff --git a/store/proto/example.pb.micro.go b/kv/proto/example.pb.micro.go similarity index 100% rename from store/proto/example.pb.micro.go rename to kv/proto/example.pb.micro.go diff --git a/store/proto/example.proto b/kv/proto/example.proto similarity index 100% rename from store/proto/example.proto rename to kv/proto/example.proto