From 9c4985368aee638d982f30ea7bc5c7ee71ae3ab3 Mon Sep 17 00:00:00 2001 From: Jeroen Wijenbergh Date: Tue, 6 May 2025 12:35:21 +0200 Subject: All: Fix staticcheck errors --- internal/api/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/api/cache.go') diff --git a/internal/api/cache.go b/internal/api/cache.go index 9a478df..5c682f4 100644 --- a/internal/api/cache.go +++ b/internal/api/cache.go @@ -16,7 +16,7 @@ type EndpointCache struct { mu sync.Mutex } -// Get() returns a cached or fresh endpoint cache copy +// Get returns a cached or fresh endpoint cache copy func (ec *EndpointCache) Get(ctx context.Context, wk string, transport http.RoundTripper) (*endpoints.Endpoints, error) { ec.mu.Lock() defer ec.mu.Unlock() -- cgit v1.2.3