a1f6701bac
- gRPC service with MusicBrainz provider - PostgreSQL schema with migrations - Service layer with database-first caching - Repository pattern for data access - YAML configuration support - Research documentation for 17 music metadata projects
6 lines
79 B
Go
6 lines
79 B
Go
package repository
|
|
|
|
import "errors"
|
|
|
|
var ErrNotFound = errors.New("not found")
|