view src/main/java/app/bbs/DistributeApp.java @ 138:07106bbc6c17

Removed unnecessary class file
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Jan 2014 18:49:31 +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));
    }
}