Skip to content

Commit

Permalink
change gorilla import path
Browse files Browse the repository at this point in the history
  • Loading branch information
zeebo committed Dec 30, 2012
1 parent bd1443e commit 71bddae
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/frontend/frontend.go
Expand Up @@ -2,7 +2,7 @@
package frontend

import (
"code.google.com/p/gorilla/pat"
"github.com/gorilla/pat"
"github.com/zeebo/goci/app/httputil"
"net/http"
)
Expand Down
2 changes: 1 addition & 1 deletion app/rpc/client/json.go
@@ -1,7 +1,7 @@
package client

import (
"code.google.com/p/gorilla/rpc/json"
"github.com/gorilla/rpc/json"
"io"
)

Expand Down
4 changes: 2 additions & 2 deletions app/rpc/router/router.go
Expand Up @@ -2,8 +2,8 @@
package router

import (
"code.google.com/p/gorilla/rpc"
"code.google.com/p/gorilla/rpc/json"
"github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
"net/http"
"sort"
)
Expand Down
4 changes: 2 additions & 2 deletions builder/web/builder.go
@@ -1,8 +1,8 @@
package web

import (
gorpc "code.google.com/p/gorilla/rpc"
"code.google.com/p/gorilla/rpc/json"
gorpc "github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
"github.com/zeebo/goci/app/pinger"
"github.com/zeebo/goci/app/rpc"
"github.com/zeebo/goci/app/rpc/client"
Expand Down
4 changes: 2 additions & 2 deletions runner/direct/direct.go
@@ -1,8 +1,8 @@
package direct

import (
gorpc "code.google.com/p/gorilla/rpc"
"code.google.com/p/gorilla/rpc/json"
gorpc "github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
"fmt"
"github.com/zeebo/goci/app/pinger"
"github.com/zeebo/goci/app/rpc"
Expand Down
4 changes: 2 additions & 2 deletions runner/web/runner.go
@@ -1,8 +1,8 @@
package web

import (
gorpc "code.google.com/p/gorilla/rpc"
"code.google.com/p/gorilla/rpc/json"
gorpc "github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
"github.com/zeebo/goci/app/pinger"
"github.com/zeebo/goci/app/rpc"
"github.com/zeebo/goci/app/rpc/client"
Expand Down

0 comments on commit 71bddae

Please sign in to comment.