blob: 8f8da29a7d47bb5ebfc05ebee5b29b958c0cecdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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);
}
}
|