update dependencies and fix lint warnings

This commit is contained in:
Lawrence, Rendall
2026-02-18 18:12:58 +03:00
parent 36a9022ef4
commit 08686d74b7
18 changed files with 205 additions and 139 deletions
@@ -1,5 +1,7 @@
// Package list implements container with pre-defined
// list of torrent hashes from config file
//
//nolint:revive
package list
import (
@@ -33,10 +33,12 @@ const defaultPeriod = time.Minute
// Extends list.Config because uses the same storage and Approved function.
type Config struct {
list.Config
Endpoint string
Region string
KeyID string `cfg:"key_id"`
KeySecret string `cfg:"key_secret"`
Endpoint string
Region string
KeyID string `cfg:"key_id"`
//nolint:gosec
KeySecret string `cfg:"key_secret"`
//nolint:gosec
SessionToken string `cfg:"session_token"`
Bucket string
Prefix string