CLI project

This commit is contained in:
Zlatin Balevsky
2019-06-04 16:46:32 +01:00
parent b129e79196
commit f2ea8619bb
3 changed files with 12 additions and 0 deletions

3
cli/build.gradle Normal file
View File

@@ -0,0 +1,3 @@
apply plugin : 'application'
mainClassName = 'com.muwire.cli.Cli'

View File

@@ -0,0 +1,8 @@
package com.muwire.cli
class Cli {
public static void main(String[] args) {
println "MuWire command-line interface"
}
}