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