Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
package model
type SearchableRepository[T any] interface {
Search(q string, options ...QueryOptions) (T, error)
}