1
0
mirror of https://github.com/labstack/echo.git synced 2025-03-23 21:29:26 +02:00

Fix file ref

This commit is contained in:
Simon Green 2016-03-11 09:22:33 -07:00
parent 09f3d3061f
commit d4c16f2d0d

View File

@ -50,9 +50,9 @@ themselves to the instance - I've found the `Group` feature naturally fits into
per REST endpoint, often with a higher-level `api` group created that they attach to instead of the root
Echo instance directly (so things like CORS middleware can be added at this higher common-level).
`some-endpoint.go`
`users.go`
{{< embed "google-app-engine/some-endpoint.go" >}}
{{< embed "google-app-engine/users.go" >}}
If we run our app it should execute as it did before when everything was in one file although we have
at least gained the ability to organize our handlers a little more cleanly.