Files
s01e01/internal/domain/repository.go
2026-03-11 22:51:42 +01:00

9 lines
201 B
Go

package domain
import "context"
// PersonRepository defines the interface for fetching person data
type PersonRepository interface {
FetchPeople(ctx context.Context, url string) ([]Person, error)
}