view src/test/java/alice/codesegment/remote/StartHostCodeSegment.java @ 82:60d28fedcbf2

Remove unnecessary files and move some files
author one
date Wed, 16 Oct 2013 20:53:44 +0900
parents src/jungle/test/codesegment/remote/StartHostCodeSegment.java@10359a815068
children f9e29a52efd3
line wrap: on
line source

package test.java.alice.codesegment.remote;

import alice.daemon.AliceDaemon;
import alice.jungle.remote.RemoteConfig;

public class StartHostCodeSegment {
	
	static public void main(String[] args) {
		System.out.println("--StartHostCodeSegment--");
		RemoteConfig conf = new RemoteConfig(args);
		new AliceDaemon(conf).listen();
		new HostFirstPut().execute();
	}
}