final
This commit is contained in:
8
internal/domain/repository.go
Normal file
8
internal/domain/repository.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package domain
|
||||
|
||||
import "context"
|
||||
|
||||
// PersonRepository defines the interface for loading persons
|
||||
type PersonRepository interface {
|
||||
LoadPersons(ctx context.Context, filePath string) ([]Person, error)
|
||||
}
|
||||
Reference in New Issue
Block a user