1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-15 01:34:53 +02:00

go fmt ./...

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2015-09-15 13:14:30 -07:00
parent d41a8a3c74
commit eef1574969
10 changed files with 79 additions and 62 deletions

View File

@ -43,7 +43,7 @@ func BasicAuth(fn BasicValidateFunc) echo.HandlerFunc {
}
}
}
c.Response().Header().Set(echo.WWWAuthenticate, Basic + " realm=Restricted")
c.Response().Header().Set(echo.WWWAuthenticate, Basic+" realm=Restricted")
return echo.NewHTTPError(http.StatusUnauthorized)
}
}