refactor: fold auth and crypto into deezer domain

This commit is contained in:
Mathis Maquenne
2026-08-05 11:40:14 +02:00
parent 16c71c8688
commit dbd7837b17
11 changed files with 60 additions and 72 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ type Session struct {
Premium bool
}
func Authenticate(ctx context.Context, arlCookie string) (*Session, error) {
func authenticate(ctx context.Context, arlCookie string) (*Session, error) {
jar, err := cookiejar.New(nil)
if err != nil {
return nil, err