We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b68cad commit cfeb63aCopy full SHA for cfeb63a
1 file changed
src/main/groovy/geoscript/Application.groovy
@@ -4,8 +4,17 @@ import groovy.ui.GroovyMain as Script
4
import groovy.ui.Console
5
import org.codehaus.groovy.tools.shell.Main as Shell
6
7
+/**
8
+ * The GeoScript Application that can run scripts, shell, or console.
9
+ * @author Jared Erickson
10
+ */
11
class Application {
12
13
+ /**
14
+ * Run the GeoScript Application
15
+ * @param args The command line arguments. At least script, shell, or console
16
+ * is required.
17
18
static void main(String[] args) {
19
if (args.length < 1) {
20
println "Please provide a command (script, shell, or console)"
0 commit comments