From 5b4380a191c52611d6178e7b19c5b3ab468be5af Mon Sep 17 00:00:00 2001 From: Michael McVady Date: Thu, 13 Mar 2025 18:59:22 -0500 Subject: Count goats --- app.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app.py') diff --git a/app.py b/app.py index 6187c0a..41724b3 100644 --- a/app.py +++ b/app.py @@ -21,6 +21,7 @@ TEMPLATE_STR = """

{{ message }}

+ """ @@ -69,11 +70,13 @@ def random_light() -> Template: @get("/") async def get_index() -> Template: + """Return index""" return random_light() @post("/") async def post_index() -> Template: + """Update index""" return random_light() -- cgit v1.2.3