summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/WeblogIndexSelect.java
blob: c9bf6171740f54ba2cef3656f4171057ee0675b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.madore.damlengine;

public final class WeblogIndexSelect {

    private WeblogIndexSelect() { // Forbid instantiation
	throw new AssertionError("WeblogIndexSelect cannot be instantiated");
    }

    public static void main(String[] args)
	throws Exception {

	DamlEngine.fullProcess(DamlEngine.class.getResourceAsStream("weblog-index-template.daml"),
			       System.out, null);

    }

}