From 5a7b556a5ae5158cf9f689844f487ed3607ecc84 Mon Sep 17 00:00:00 2001 From: Lennart Kats Date: Mon, 3 Jul 2023 16:51:44 +0200 Subject: [PATCH] Add docstring --- bundle/config/bundle.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bundle/config/bundle.go b/bundle/config/bundle.go index ea9eb188a..875159577 100644 --- a/bundle/config/bundle.go +++ b/bundle/config/bundle.go @@ -29,5 +29,8 @@ type Bundle struct { // origin url. Automatically loaded by reading .git directory if not specified Git Git `json:"git,omitempty"` + // Determines the mode of the environment. + // For example, 'mode: development' can be used for deployments for + // development purposes. Mode Mode `json:"mode,omitempty"` }