From 0e5d30a0f8e3579bd7ae344eaf6e1e89fa8cc9a3 Mon Sep 17 00:00:00 2001 From: ex-takashima Date: Sun, 22 Feb 2026 21:39:17 +0900 Subject: [PATCH] style: align struct tags per golines formatter Co-Authored-By: Claude Opus 4.6 --- pkg/config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 99c36a513..18ac99f5c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -453,8 +453,8 @@ type ExecConfig struct { } type MediaCleanupConfig struct { - Enabled bool `json:"enabled" env:"PICOCLAW_MEDIA_CLEANUP_ENABLED"` - MaxAge int `json:"max_age_minutes" env:"PICOCLAW_MEDIA_CLEANUP_MAX_AGE"` + Enabled bool `json:"enabled" env:"PICOCLAW_MEDIA_CLEANUP_ENABLED"` + MaxAge int `json:"max_age_minutes" env:"PICOCLAW_MEDIA_CLEANUP_MAX_AGE"` Interval int `json:"interval_minutes" env:"PICOCLAW_MEDIA_CLEANUP_INTERVAL"` }