initial commit

This commit is contained in:
2026-03-11 22:51:42 +01:00
commit 95c2c9cafe
16 changed files with 1942 additions and 0 deletions

View File

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