package edu.cmu.paid.network.test;

import java.lang.String;
import edu.cmu.paid.network.CNetwork_Api;
import edu.cmu.paid.network.voyager.*;
import com.objectspace.voyager.Proxy;

/** This test is to exercise the multicasting via the network API.
  * @author Barrett Trask
  */

public class VoyagerStartup{
  
  public static void main(String argv[]){
    CNetwork_Api nAPI;

    nAPI = new CNetwork_Api();

    try{
      nAPI.serverStartup(argv[0]);
    } catch (java.lang.Exception e){
      System.err.println(e);
    }
  }

}

