From 22b15fb0a9b9e40859e5741ee90ffb2900eb6321 Mon Sep 17 00:00:00 2001 From: Jonatas Baldin Date: Thu, 3 Oct 2019 18:44:23 -0300 Subject: [PATCH] Remove duplicated Secret struct Signed-off-by: Jonatas Baldin --- gateway/requests/requests.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gateway/requests/requests.go b/gateway/requests/requests.go index b1ed02af..2528277b 100644 --- a/gateway/requests/requests.go +++ b/gateway/requests/requests.go @@ -16,10 +16,3 @@ type AsyncReport struct { type DeleteFunctionRequest struct { FunctionName string `json:"functionName"` } - -// Secret for underlying orchestrator -type Secret struct { - Name string `json:"name"` - Namespace string `json:"namespace"` - Value string `json:"value,omitempty"` -}