mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00

* chore: update license header year * chore: update license header year tsx files * chore: update license header
10 lines
204 B
Go
10 lines
204 B
Go
// Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors.
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
package domain
|
|
|
|
import "database/sql"
|
|
|
|
var (
|
|
ErrRecordNotFound = sql.ErrNoRows
|
|
)
|