Skip to content

Commit

Permalink
Merge 7c9813a into bd99546
Browse files Browse the repository at this point in the history
  • Loading branch information
wezzle committed Jun 29, 2017
2 parents bd99546 + 7c9813a commit 39efcd2
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/pubsub/api-sns-pub/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/NYTimes/gizmo/pubsub/aws"
"github.com/NYTimes/gizmo/server"
"github.com/NYTimes/gziphandler"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion examples/pubsub/cli-sns-pub/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/NYTimes/gizmo/examples/nyt"
"github.com/NYTimes/gizmo/pubsub"
"github.com/NYTimes/gizmo/pubsub/aws"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/pubsub/sqs-sub/service/sub.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/NYTimes/gizmo/pubsub"
"github.com/NYTimes/gizmo/pubsub/aws"
"github.com/NYTimes/logrotate"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/go-kit/kit/metrics/provider"
"github.com/golang/protobuf/proto"

Expand Down
2 changes: 1 addition & 1 deletion examples/servers/json/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/NYTimes/gizmo/server"
"github.com/NYTimes/gziphandler"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"

"github.com/NYTimes/gizmo/examples/nyt"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/servers/mixed/service/cats.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/NYTimes/gizmo/examples/nyt"
"github.com/NYTimes/gizmo/server"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)

func (s *MixedService) GetCats(w http.ResponseWriter, r *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion examples/servers/mixed/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/NYTimes/gizmo/server"
"github.com/NYTimes/gziphandler"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"

"github.com/NYTimes/gizmo/examples/nyt"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/servers/rpc/service/service_go17.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"context"
"net/http"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"

"github.com/NYTimes/gizmo/server"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/servers/rpc/service/service_pre_go17.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package service
import (
"net/http"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"golang.org/x/net/context"

"github.com/NYTimes/gizmo/server"
Expand Down
2 changes: 1 addition & 1 deletion examples/servers/simple/service/cats.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/NYTimes/gizmo/examples/nyt"
"github.com/NYTimes/gizmo/server"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)

func (s *SimpleService) GetCats(w http.ResponseWriter, r *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion pubsub/pubsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"golang.org/x/net/context"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/golang/protobuf/proto"
)

Expand Down
2 changes: 1 addition & 1 deletion server/rpc_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/go-kit/kit/metrics"
"github.com/go-kit/kit/metrics/provider"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/metadata"
Expand Down
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"syscall"
"time"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/go-kit/kit/metrics/provider"
"github.com/nu7hatch/gouuid"

Expand Down

0 comments on commit 39efcd2

Please sign in to comment.