From d4c16f2d0d129ef4310dc68a1c02bac3bacdaa0a Mon Sep 17 00:00:00 2001 From: Simon Green <simon@captaincodeman.com> Date: Fri, 11 Mar 2016 09:22:33 -0700 Subject: [PATCH] Fix file ref --- website/content/recipes/google-app-engine.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/recipes/google-app-engine.md b/website/content/recipes/google-app-engine.md index e424e5fa..0e292904 100644 --- a/website/content/recipes/google-app-engine.md +++ b/website/content/recipes/google-app-engine.md @@ -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.