mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 00:43:12 +01:00
* Treat empty image input as null * Add validation to models.Date * Allow zero dates in database * Make scene_markers.scene_id non-nullable * Drop scraped_items table * Remove movie/studio checksum * Add migration notes --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
13 lines
287 B
Go
13 lines
287 B
Go
package models
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrNotFound signifies entities which are not found
|
|
ErrNotFound = errors.New("not found")
|
|
|
|
// ErrConversion signifies conversion errors
|
|
ErrConversion = errors.New("conversion error")
|
|
|
|
ErrScraperSource = errors.New("invalid ScraperSource")
|
|
)
|