From b3eaa12fbabd954e9c57eea758b72dc9ad97cf22 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Mon, 8 Apr 2024 11:01:57 +0300 Subject: [PATCH] envsubst: Add package doc Signed-off-by: Stefan Prodan --- envsubst/doc.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 envsubst/doc.go diff --git a/envsubst/doc.go b/envsubst/doc.go new file mode 100644 index 00000000..400c94dc --- /dev/null +++ b/envsubst/doc.go @@ -0,0 +1,19 @@ +/* +Copyright 2024 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Package envsubst is a Go package for expanding variables in a string using `${var}` syntax. +// Includes support for bash string replacement functions. +package envsubst