refactor: remove dead logger package and unused fields

This commit is contained in:
Mathis Maquenne
2026-08-05 11:31:17 +02:00
parent 97153c1688
commit 3ec258b876
5 changed files with 8 additions and 47 deletions
-2
View File
@@ -12,7 +12,6 @@ import (
type Config struct {
ARLCookie string
OutputDir string
HomeDir string
}
func New() (*Config, error) {
@@ -49,6 +48,5 @@ func New() (*Config, error) {
return &Config{
ARLCookie: arl,
OutputDir: outputDir,
HomeDir: homeDir,
}, nil
}