view src/test/java/alice/codesegment/remote/StartHostCodeSegment.java @ 105:f9e29a52efd3

Move some files
author one
date Tue, 26 Nov 2013 06:43:10 +0900
parents 60d28fedcbf2
children
line wrap: on
line source

package alice.codesegment.remote;

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

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();
	}
}