Implement get all characters

This commit is contained in:
2025-10-10 23:14:45 +02:00
parent ea9ecb364b
commit 42ba6160bf
2 changed files with 14 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import "go-eve-pi/types"
// CharacterRepositoryInterface defines the interface for character operations
type CharacterRepositoryInterface interface {
GetCharacterByName(characterName string) (*types.Character, error)
GetAllCharacters() ([]types.Character, error)
SaveCharacter(character *types.Character) error
}