Fixed appengine.go + minor changes

This commit is contained in:
= 2014-11-30 16:18:10 +01:00 committed by panamafrancis
parent fbb3fc87ba
commit 4bafc22f43
2 changed files with 5 additions and 3 deletions

View file

@ -23,7 +23,6 @@ import (
"github.com/google/cayley/config"
"github.com/google/cayley/db"
"github.com/google/cayley/graph"
"github.com/google/cayley/http"
_ "github.com/google/cayley/graph/gaedatastore"
@ -103,5 +102,5 @@ func init() {
if err != nil {
glog.Fatal(err)
}
http.SetupRoutes(&handle, cfg)
http.SetupRoutes(handle, cfg)
}