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 -4
View File
@@ -14,8 +14,7 @@ import (
)
type Client struct {
AppConfig *config.Config
Session *Session
Session *Session
}
func NewClient(ctx context.Context, appConfig *config.Config) (*Client, error) {
@@ -25,8 +24,7 @@ func NewClient(ctx context.Context, appConfig *config.Config) (*Client, error) {
}
return &Client{
AppConfig: appConfig,
Session: session,
Session: session,
}, nil
}