package pl.dmury.cv.repository; import pl.dmury.cv.model.blog.Post; import java.util.List; public interface PostRepository { List<Post> findAll(); }