From 3381a9f3dba45f07a6dcdba163158c68a7bc4a89 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sat, 2 Jul 2022 14:38:58 +0100 Subject: [PATCH] Remove body from endpoint --- api/api.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api/api.go b/api/api.go index 5bebb1eb..a5eb0efb 100644 --- a/api/api.go +++ b/api/api.go @@ -52,10 +52,6 @@ type Endpoint struct { Method []string // HTTP Path e.g /greeter. Expect POSIX regex Path []string - // Body destination - // "*" or "" - top level message value - // "string" - inner message value - Body string // Stream flag Stream bool }