summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/WeblogIndexSelect.java
blob: 5d6bc537c981e77b7d5b0cf4d1201a79937c5f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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("weblog-index-template.daml", System.out, null);

    }

}