10 lines
313 B
Go
10 lines
313 B
Go
package repositories
|
|
|
|
import "errors"
|
|
|
|
// Sentinel errors the repositories return so handlers can tell "there is no
|
|
// such row" from "the query failed", without importing database/sql to do it.
|
|
|
|
// ErrVideoNotFound reports that no video has the requested id.
|
|
var ErrVideoNotFound = errors.New("video not found")
|