1
0
mirror of https://github.com/labstack/echo.git synced 2025-03-11 14:49:56 +02:00

Fixed broken build

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-04-19 16:07:39 -07:00
parent 467ac2ce9b
commit 91582c0103
3 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ func main() {
e := echo.New()
// Middleware
e.Use(mw.Logger)
e.Use(echo.Logger)
// Routes
e.Get("/", hello)

View File

@ -15,7 +15,7 @@ func main() {
e := echo.New()
// Middleware
e.Use(mw.Logger)
e.Use(echo.Logger)
// Routes
e.Get("/", hello)

View File

@ -51,7 +51,7 @@ func main() {
e := echo.New()
// Middleware
e.Use(mw.Logger)
e.Use(echo.Logger)
// Routes
e.Get("/", hello)