create core package

pull/4/head
Zlatin Balevsky 2018-07-17 21:30:32 +01:00
parent 5f25c80f19
commit 2c6d45c569
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1 @@
mainClassName = 'com.muwire.core.Core'

View File

@ -0,0 +1,7 @@
package com.muwire.core;
public class Core {
public static void main(String[] args) {
System.out.println("This doesn't do anything yet");
}
}

View File

@ -1,2 +1,3 @@
include 'pinger'
include 'host-cache'
include 'core'