view src/main/java/app/bbs/DistributeApp.java @ 112:8f9811a1e00c

Moved app files
author one
date Fri, 29 Nov 2013 04:31:22 +0900
parents src/main/java/jungle/app/bbs/DistributeApp.java@f42f2e6b31de
children dacfa7eba841
line wrap: on
line source

package app.bbs;


import alice.jungle.remote.RemoteConfig;
import alice.topology.node.TopologyNode;
import app.bbs.codesegment.StartBBSCodeSegment;


public class DistributeApp 
{
    public static void main( String[] args ) throws Exception
    {
   		RemoteConfig conf = new RemoteConfig(args);
   		new TopologyNode(conf, new StartBBSCodeSegment(conf.bbsPort));
    }
}