Rename unused parameters to _ to satisfy linter

This commit is contained in:
2026-01-08 02:27:45 -08:00
parent 146eeee070
commit 29adb6ee47
8 changed files with 11 additions and 11 deletions

View File

@@ -39,12 +39,12 @@ func New(lc fx.Lifecycle, params Params) (*Healthcheck, error) {
}
lc.Append(fx.Hook{
OnStart: func(ctx context.Context) error {
OnStart: func(_ context.Context) error {
s.StartupTime = time.Now()
return nil
},
OnStop: func(ctx context.Context) error {
OnStop: func(_ context.Context) error {
return nil
},
})