io.github.kilmajster.blog.data.PostsRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minimal-blog-spring-boot-starter Show documentation
Show all versions of minimal-blog-spring-boot-starter Show documentation
Spring boot starter that provides simplest blog as possible! ⚡️
package io.github.kilmajster.blog.data;
import java.util.List;
public interface PostsRepository {
List getPosts();
}