OSDN Git Service

modify ci
[bytom/vapor.git] / vendor / github.com / go-kit / kit / examples / shipping / routing / routing.go
diff --git a/vendor/github.com/go-kit/kit/examples/shipping/routing/routing.go b/vendor/github.com/go-kit/kit/examples/shipping/routing/routing.go
deleted file mode 100644 (file)
index 50496f2..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Package routing provides the routing domain service. It does not actually
-// implement the routing service but merely acts as a proxy for a separate
-// bounded context.
-package routing
-
-import (
-       "github.com/go-kit/kit/examples/shipping/cargo"
-)
-
-// Service provides access to an external routing service.
-type Service interface {
-       // FetchRoutesForSpecification finds all possible routes that satisfy a
-       // given specification.
-       FetchRoutesForSpecification(rs cargo.RouteSpecification) []cargo.Itinerary
-}