Skip to content

Commit

Permalink
Change module path
Browse files Browse the repository at this point in the history
  • Loading branch information
mingrammer committed Mar 24, 2019
1 parent bfe3092 commit 5a89f0c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions handler/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"math/rand"
"net/http"

"github.com/golang-korea/codelab/model"
"github.com/golang-korea/codelab/oauth"
"github.com/golangkorea/codelab/model"
"github.com/golangkorea/codelab/oauth"
"github.com/gorilla/sessions"
)

Expand Down
2 changes: 1 addition & 1 deletion handler/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/gob"
"text/template"

"github.com/golang-korea/codelab/model"
"github.com/golangkorea/codelab/model"
"github.com/gorilla/sessions"
)

Expand Down
4 changes: 2 additions & 2 deletions handler/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package handler
import (
"net/http"

"github.com/golang-korea/codelab/model"
"github.com/golang-korea/codelab/oauth"
"github.com/golangkorea/codelab/model"
"github.com/golangkorea/codelab/oauth"
"github.com/gorilla/sessions"
)

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"net/http"

"github.com/golang-korea/codelab/config"
"github.com/golang-korea/codelab/handler"
"github.com/golangkorea/codelab/config"
"github.com/golangkorea/codelab/handler"
)

const bind = ":1333"
Expand Down
2 changes: 1 addition & 1 deletion oauth/google.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package oauth

import (
"github.com/golang-korea/codelab/config"
"github.com/golangkorea/codelab/config"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
)
Expand Down

0 comments on commit 5a89f0c

Please sign in to comment.