view src/main/java/alice/test/topology/fish/DistributedFish.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents aefbe41fcf12
children
line wrap: on
line source

package alice.test.topology.fish;

import alice.topology.node.TopologyNode;

public class DistributedFish {

    public static void main(String[] args) {
        FishConfig conf = new FishConfig(args);
        new TopologyNode(conf, new StartFish());

    }

}