From 41073094f51317d4aa0990401b30f143149e7388 Mon Sep 17 00:00:00 2001 From: Tofel <20401585+Tofel@users.noreply.github.com> Date: Mon, 9 Dec 2024 11:20:14 +0000 Subject: [PATCH] [Bot] Add automatically generated go documentation --- k8s-test-runner/k8s_client/client.go | 2 ++ seth/config.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/k8s-test-runner/k8s_client/client.go b/k8s-test-runner/k8s_client/client.go index a0b28e369..321695f75 100644 --- a/k8s-test-runner/k8s_client/client.go +++ b/k8s-test-runner/k8s_client/client.go @@ -85,6 +85,8 @@ func retryK8sCall(operation k8sOperation, retryPolicy wait.Backoff) error { return nil } +// IDoNothing is a placeholder function that performs no operations. +// It can be used as a stub in testing or as a default implementation. func IDoNothing() { //I really do nothing } diff --git a/seth/config.go b/seth/config.go index 29d836470..8fa6f37c7 100644 --- a/seth/config.go +++ b/seth/config.go @@ -15,6 +15,8 @@ import ( "github.com/pkg/errors" ) +// MyAmazingNewFunction returns a predefined string value. +// It can be used as a placeholder or for testing purposes in various contexts. func MyAmazingNewFunction() string { return "bla bla bla" }