Sort imports intro three blocks (stdlib, non-stdlib, current prj)

This commit is contained in:
pancho horrillo
2019-10-13 08:09:15 +02:00
parent ed03e1a89f
commit c62a0d6a9a
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -3,8 +3,9 @@ package mux
import ( import (
"net/http" "net/http"
"github.com/BBVA/kapow/internal/server/model"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/BBVA/kapow/internal/server/model"
) )
func gorillize(rs []model.Route, buildHandler func(model.Route) http.Handler) *mux.Router { func gorillize(rs []model.Route, buildHandler func(model.Route) http.Handler) *mux.Router {
+2 -1
View File
@@ -4,8 +4,9 @@ import (
"net/http" "net/http"
"sync" "sync"
"github.com/BBVA/kapow/internal/server/model"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/BBVA/kapow/internal/server/model"
) )
type SwappableMux struct { type SwappableMux struct {