view src/main/java/alice/test/topology/share/ShareTopology.java @ 402:dbfeb353a78d draft multicast tip

refs #3 test commit
author tatsuki
date Tue, 24 Jun 2014 19:06:41 +0900
parents 8f71c3e6f11d
children
line wrap: on
line source

package alice.test.topology.share;
import alice.topology.node.TopologyNode;

public class ShareTopology {
	public static void main(String[] args){
		ShareConfig conf = new ShareConfig(args);
		new TopologyNode(conf, new StartFishMovement());
		
	}

}