wip on pinger

This commit is contained in:
Zlatin Balevsky
2018-07-09 23:26:47 +01:00
parent beb848ee65
commit 949dc76a84
5 changed files with 22 additions and 13 deletions

1
pinger/build.gradle Normal file
View File

@ -0,0 +1 @@
mainClassName = 'com.muwire.pinger.Pinger'

View File

@ -0,0 +1,7 @@
package com.muwire.pinger
public class Pinger {
public static void main(String []args) {
println "ping"
}
}