Browse Source

Corrected imports

Wirecog 6 years ago
parent
commit
79d12f259c
2 changed files with 4 additions and 3 deletions
  1. 2
    1
      handlers/templatebundle.go
  2. 2
    2
      isogoapp.go

+ 2
- 1
handlers/templatebundle.go View File

@@ -3,9 +3,10 @@ package handlers
3 3
 import (
4 4
 	"bytes"
5 5
 	"encoding/gob"
6
-	"isogoblog/common"
7 6
 	"log"
8 7
 	"net/http"
8
+
9
+	"github.com/isomorphicgo/isogoapp/common"
9 10
 )
10 11
 
11 12
 func TemplateBundleHandler(env *common.Env) http.Handler {

+ 2
- 2
isogoapp.go View File

@@ -2,13 +2,13 @@ package main
2 2
 
3 3
 import (
4 4
 	"fmt"
5
-	"isogoblog/common"
6
-	"isomorphicgo/isokit"
7 5
 	"net/http"
8 6
 	"os"
9 7
 
10 8
 	"github.com/gorilla/mux"
9
+	"github.com/isomorphicgo/isogoapp/common"
11 10
 	"github.com/isomorphicgo/isogoapp/handlers"
11
+	"github.com/isomorphicgo/isokit"
12 12
 )
13 13
 
14 14
 var WebAppRoot string = os.Getenv("ISOGO_APP_ROOT")