From f6b70184a751d290628a3bc35a1ccdf83b8fe2e4 Mon Sep 17 00:00:00 2001 From: rouggy Date: Sat, 29 Aug 2026 00:26:32 +0200 Subject: [PATCH] chore(qso): drop the redundant SlotsSince free function --- internal/qso/qso.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/qso/qso.go b/internal/qso/qso.go index f862371..833be8d 100644 --- a/internal/qso/qso.go +++ b/internal/qso/qso.go @@ -2017,10 +2017,6 @@ type SlotRow struct { // SlotsSince lists the slots of every contact made since the given instant — // the contest watchlist's "worked today", where the day boundary lives in this // query's bound and nowhere else. -func SlotsSince(r *Repo, ctx context.Context, since time.Time) ([]SlotRow, error) { - return r.SlotsSince(ctx, since) -} - func (r *Repo) SlotsSince(ctx context.Context, since time.Time) ([]SlotRow, error) { rows, err := r.db.QueryContext(ctx, "SELECT callsign, band, mode FROM qso WHERE qso_date >= ?",