mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-19 11:36:37 +03:00
8 lines
140 B
Go
8 lines
140 B
Go
package domain
|
|
|
|
type BaseRepository interface {
|
|
NewId(fields ...string) string
|
|
CountAll() (int, error)
|
|
Exists(id string) (bool, error)
|
|
}
|