9 lines
201 B
Go
9 lines
201 B
Go
package domain
|
|
|
|
import "context"
|
|
|
|
// PersonRepository defines the interface for loading persons
|
|
type PersonRepository interface {
|
|
LoadPersons(ctx context.Context, filePath string) ([]Person, error)
|
|
}
|