mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-03 00:51:11 +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)
|
|
}
|