view src/jungle/test/codesegment/remote/StartHostCodeSegment.java @ 39:10359a815068

add alice.jungle.codesegment.remote
author one
date Tue, 09 Jul 2013 15:10:06 +0900
parents
children
line wrap: on
line source

package jungle.test.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();
	}
}