From ed1df43a59d24b9b5f9d56c3bebc16eeb828723d Mon Sep 17 00:00:00 2001 From: Tofel <20401585+Tofel@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:57:29 +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..386583479 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 for testing or as a stub in development scenarios. 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" }