view src/alice/topology/manager/TopologyManager.java @ 111:ba64a9d76e70 working

Add AutoIncrement
author sugi
date Tue, 17 Jul 2012 17:23:55 +0900
parents f54dcbebde3a
children
line wrap: on
line source

package alice.topology.manager;

import alice.daemon.AliceDaemon;

public class TopologyManager {

	public static void main(String[] args) {
		TopologyManagerConfig conf = new TopologyManagerConfig(args);
		new AliceDaemon(conf).listen();
		new StartTopologyManager(conf).execute();
	}

}