From 6e9b5cfa5edddb83ff772ad962526080774c15d5 Mon Sep 17 00:00:00 2001 From: Tofel <20401585+Tofel@users.noreply.github.com> Date: Fri, 6 Dec 2024 11:30:41 +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..b48dc6ecf 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 code where a function is required but no action is needed. 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" }