package repositories import "errors" // A Bundle is a set of repositories. type Bundle struct { Characters CharacterRepository Tags TagRepository } // ErrNotFound should be returned instead of any database-specific not found error. var ErrNotFound = errors.New("Resource not found")