management server listener (#17)
ci/woodpecker/push/woodpecker Pipeline was successful

Reviewed-on: #17
Co-authored-by: David Ashby <delta.mu.alpha@gmail.com>
Co-committed-by: David Ashby <delta.mu.alpha@gmail.com>
This commit was merged in pull request #17.
This commit is contained in:
2024-01-06 21:38:13 +00:00
committed by alazyreader
parent dc7218131d
commit 315fb4e9d2
19 changed files with 1109 additions and 221 deletions
+13
View File
@@ -0,0 +1,13 @@
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")
}