view src/test/java/alice/codesegment/remote/StartHostCodeSegment.java @ 194:fd4064e110bd fjTreeMap

change TreeContext
author tatsuki
date Mon, 23 Mar 2015 16:18:47 +0900
parents f9e29a52efd3
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();
	}
}