From fa59ccef4f31aac1bcf3041b009d554df40d0173 Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Mon, 24 Mar 2025 18:13:58 +0200 Subject: [PATCH] add package level comment --- auth/auth.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth/auth.go b/auth/auth.go index 7cb1d1fd..dcfd09eb 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -1,3 +1,5 @@ +// Package auth package provides authentication-related interfaces and types. +// It also includes a basic implementation of credentials using username and password. package auth // StreamingCredentialsProvider is an interface that defines the methods for a streaming credentials provider.