From a5b5bb7ee57023e48f272d8b0ab18edf81f42c88 Mon Sep 17 00:00:00 2001 From: mirkobrombin Date: Thu, 11 Jan 2024 19:38:55 +0100 Subject: [PATCH] feat: support "EXPOSE" key in API --- api/structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/structs.go b/api/structs.go index 7a6bb62..0cd49e3 100644 --- a/api/structs.go +++ b/api/structs.go @@ -20,6 +20,7 @@ type Recipe struct { Adds map[string]string `json:"adds"` Args map[string]string `json:"args"` Runs []string `json:"runs"` + Expose int `json:"expose"` Cmd string `json:"cmd"` Modules []interface{} `json:"modules"` Path string