Browse Source

Updated repo links in import paths

Wirecog 5 years ago
parent
commit
e3754fe9ff
3 changed files with 5 additions and 5 deletions
  1. 1
    1
      common/common.go
  2. 1
    1
      handlers/templatebundle.go
  3. 3
    3
      isogoapp.go

+ 1
- 1
common/common.go View File

@@ -1,6 +1,6 @@
1 1
 package common
2 2
 
3
-import "github.com/isomorphicgo/isokit"
3
+import "go.isomorphicgo.org/go/isokit"
4 4
 
5 5
 type Env struct {
6 6
 	TemplateSet *isokit.TemplateSet

+ 1
- 1
handlers/templatebundle.go View File

@@ -6,7 +6,7 @@ import (
6 6
 	"log"
7 7
 	"net/http"
8 8
 
9
-	"github.com/isomorphicgo/isogoapp/common"
9
+	"go.isomorphicgo.org/go/isogoapp/common"
10 10
 )
11 11
 
12 12
 func TemplateBundleHandler(env *common.Env) http.Handler {

+ 3
- 3
isogoapp.go View File

@@ -6,9 +6,9 @@ import (
6 6
 	"os"
7 7
 
8 8
 	"github.com/gorilla/mux"
9
-	"github.com/isomorphicgo/isogoapp/common"
10
-	"github.com/isomorphicgo/isogoapp/handlers"
11
-	"github.com/isomorphicgo/isokit"
9
+	"go.isomorphicgo.org/go/isogoapp/common"
10
+	"go.isomorphicgo.org/go/isogoapp/handlers"
11
+	"go.isomorphicgo.org/go/isokit"
12 12
 )
13 13
 
14 14
 var WebAppRoot string = os.Getenv("ISOGO_APP_ROOT")