From 50822f21a7e9583606d08eed1acd8281451a7f94 Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Wed, 28 Sep 2022 08:22:33 -0700 Subject: [PATCH] include todo --- api/handlers/cow.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/handlers/cow.go b/api/handlers/cow.go index 47097f5..3b79561 100644 --- a/api/handlers/cow.go +++ b/api/handlers/cow.go @@ -24,6 +24,8 @@ type Cow struct { DB databases.CowDatabase } +// TODO: update api return messages + // CowHandler returns all cows func (c Cow) CowHandler(w http.ResponseWriter, r *http.Request) { dbResp, err := c.DB.Find(context.TODO(), bson.M{})