Mercurial > hg > Database > Alice
comparison src/main/java/alice/topology/manager/TopologyManager.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | aefbe41fcf12 |
comparison
equal
deleted
inserted
replaced
344:9f97ec18f8c5 | 345:8f71c3e6f11d |
---|---|
1 package alice.topology.manager; | |
2 | |
3 import alice.daemon.AliceDaemon; | |
4 | |
5 public class TopologyManager { | |
6 | |
7 public static void main(String[] args) { | |
8 TopologyManagerConfig conf = new TopologyManagerConfig(args); | |
9 new AliceDaemon(conf).listen(); | |
10 new StartTopologyManager(conf).execute(); | |
11 } | |
12 | |
13 } |