mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-20 08:44:16 +03:00
9 lines
109 B
Go
9 lines
109 B
Go
package domain
|
|
|
|
type BaseRepository interface {
|
|
NewId(fields ...string) string
|
|
CountAll() (int, error)
|
|
|
|
}
|
|
|