view src/main/java/app/bbs/DistributeApp.java @ 130:652a6dff6288

Fixed
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Sat, 11 Jan 2014 09:10:02 +0900
parents dacfa7eba841
children 69b5565c4a63
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(args, conf.bbsPort));
    }
}