David Ashby
86f643ad0b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
12 lines
170 B
Go
12 lines
170 B
Go
package query
|
|
|
|
import (
|
|
"git.yetaga.in/alazyreader/library/media"
|
|
)
|
|
|
|
type Null struct{}
|
|
|
|
func (o *Null) GetByISBN(isbn string) (*media.Book, error) {
|
|
return nil, nil
|
|
}
|