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
 package common
1
 package common
2
 
2
 
3
-import "github.com/isomorphicgo/isokit"
3
+import "go.isomorphicgo.org/go/isokit"
4
 
4
 
5
 type Env struct {
5
 type Env struct {
6
 	TemplateSet *isokit.TemplateSet
6
 	TemplateSet *isokit.TemplateSet

+ 1
- 1
handlers/templatebundle.go View File

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

+ 3
- 3
isogoapp.go View File

6
 	"os"
6
 	"os"
7
 
7
 
8
 	"github.com/gorilla/mux"
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
 var WebAppRoot string = os.Getenv("ISOGO_APP_ROOT")
14
 var WebAppRoot string = os.Getenv("ISOGO_APP_ROOT")