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
 import (
3
 import (
4
 	"bytes"
4
 	"bytes"
5
 	"encoding/gob"
5
 	"encoding/gob"
6
-	"isogoblog/common"
7
 	"log"
6
 	"log"
8
 	"net/http"
7
 	"net/http"
8
+
9
+	"github.com/isomorphicgo/isogoapp/common"
9
 )
10
 )
10
 
11
 
11
 func TemplateBundleHandler(env *common.Env) http.Handler {
12
 func TemplateBundleHandler(env *common.Env) http.Handler {

+ 2
- 2
isogoapp.go View File

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