package no.niths.infrastructure.school.interfaces; import no.niths.domain.school.Feed; import no.niths.infrastructure.interfaces.GenericRepository; /** * Repository class for Feed * * <p> * Inherits the basic CRUD actions * </p> */ public interface FeedRepoistory extends GenericRepository<Feed> { }