refactor: unexport internal identifiers and fix naming nits

This commit is contained in:
Mathis Maquenne
2026-08-05 21:55:59 +02:00
parent c1775e5c04
commit eea049aae9
13 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ import (
)
func resolveARL(ctx context.Context, validate func(ctx context.Context, arl string) error) (string, error) {
creds, err := LoadCredentials()
creds, err := loadCredentials()
if err != nil {
return "", err
}
@@ -46,7 +46,7 @@ func Login(ctx context.Context, email, password string) (string, string, error)
return "", "", err
}
if err := SaveCredentials(creds); err != nil {
if err := saveCredentials(creds); err != nil {
return "", "", err
}