package org.madore.damlengine; import java.io.OutputStream; import java.nio.file.Files; public final class WeblogIndexSelect { private WeblogIndexSelect() { // Forbid instantiation throw new AssertionError("WeblogIndexSelect cannot be instantiated"); } public static void fullProcess(OutputStream out) throws Exception { DamlEngine.fullProcess(Files.newInputStream(DamlEngine.templatePath.resolve("weblog-index-template.daml")), out, null); } }