We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed013b commit 392a7c9Copy full SHA for 392a7c9
src/main/resources/archetype-resources/src/main/java/__packageInPathFormat__/Application.java
@@ -5,6 +5,10 @@
5
6
@Action(value = "", description = "Sample tinystruct application", mode = Action.Mode.CLI)
7
public class Application extends AbstractApplication {
8
+ @Override
9
+ public void init() {
10
+ this.setTemplateRequired(false);
11
+ }
12
13
@Action(value = "hello", description = "Say hello")
14
public String sayHello() {
@@ -17,11 +21,6 @@ public String help() {
17
21
return super.help();
18
22
}
19
23
20
- @Override
- public void init() {
- this.setTemplateRequired(false);
- }
24
-
25
@Override
26
public String version() {
27
return "";
0 commit comments