blob: b934408baa7d6ba180e80759e7a1d0af5c663e8e [file] [log] [blame]
package eu.mulk.mulkcms2.benki.posts;
import jakarta.ws.rs.Path;
import java.security.NoSuchAlgorithmException;
@Path("/posts")
public class AllPostsResource extends PostResource {
public AllPostsResource() throws NoSuchAlgorithmException {
super(PostFilter.ALL, "All Posts");
}
}