(ctx context.Context, uuid string)
| 136 | } |
| 137 | |
| 138 | func (s *SQLiteStore) Unpin(ctx context.Context, uuid string) error { |
| 139 | _, err := s.db.ExecContext(ctx, `UPDATE events SET is_pinned = 0 WHERE uuid = ?`, uuid) |
| 140 | return err |
| 141 | } |
| 142 | |
| 143 | type scannable interface { |
| 144 | Scan(dest ...any) error |
no outgoing calls