package file import ( "git.andreafazzi.eu/andrea/probo/models" "git.andreafazzi.eu/andrea/probo/store" ) type ParticipantFileStore = FileStore[*models.Participant, *store.Store[*models.Participant]] func NewParticipantFileStore(config *FileStoreConfig[*models.Participant, *store.Store[*models.Participant]]) (*ParticipantFileStore, error) { return NewFileStore[*models.Participant](config, store.NewStore[*models.Participant]()) }