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