serverconfig: use handlers package consistently for all handlers now.

Change-Id: Ib10e887e8692d99a838547016d044394cb8db3a7
This commit is contained in:
Brad Fitzpatrick 2013-07-08 19:56:52 +10:00
parent 9468e5ba70
commit f1728b3299
1 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,6 @@ import (
"camlistore.org/pkg/auth"
"camlistore.org/pkg/blobserver"
"camlistore.org/pkg/blobserver/gethandler"
"camlistore.org/pkg/blobserver/handlers"
"camlistore.org/pkg/httputil"
"camlistore.org/pkg/jsonconfig"
@ -120,7 +119,7 @@ func camliHandlerUsingStorage(req *http.Request, action string, storage blobserv
case "stat":
handler = handlers.CreateStatHandler(storage).ServeHTTP
default:
handler = gethandler.CreateGetHandler(storage).ServeHTTP
handler = handlers.CreateGetHandler(storage).ServeHTTP
op = auth.OpGet
}
case "POST":