Versions in this module Expand all Collapse all v0 v0.2.1 May 13, 2024 v0.2.0 Apr 20, 2024 Changes in this version + type AuthorService struct + func NewService(queries repository.Querier) *AuthorService + func (s *AuthorService) Create(ctx context.Context, name string, bio string) (repository.Author, error) + func (s *AuthorService) Delete(ctx context.Context, authorID int64) error + func (s *AuthorService) Get(ctx context.Context, authorID int64) (*repository.Author, error) + func (s *AuthorService) List(ctx context.Context) ([]repository.Author, error)