Hallucinate a whole lot of shit...

Too much shit...
This commit is contained in:
2025-10-10 22:28:05 +02:00
parent d7d3a6e888
commit da5133eef8
9 changed files with 233 additions and 42 deletions

View File

@@ -0,0 +1,9 @@
package repositories
import "go-eve-pi/types"
// CharacterRepositoryInterface defines the interface for character operations
type CharacterRepositoryInterface interface {
GetCharacterByName(characterName string) (*types.Character, error)
SaveCharacter(character *types.Character) error
}