comparison 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
comparison
equal deleted inserted replaced
38:d8ee57a1c2c6 39:10359a815068
1 package jungle.test.codesegment.remote;
2
3 import alice.daemon.AliceDaemon;
4 import alice.jungle.remote.RemoteConfig;
5
6 public class StartHostCodeSegment {
7
8 static public void main(String[] args) {
9 System.out.println("--StartHostCodeSegment--");
10 RemoteConfig conf = new RemoteConfig(args);
11 new AliceDaemon(conf).listen();
12 new HostFirstPut().execute();
13 }
14 }