mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
7 lines
107 B
Go
7 lines
107 B
Go
package domain
|
|
|
|
type BaseRepository interface {
|
|
NewId(fields ...string) string
|
|
CountAll() (int, error)
|
|
}
|