import ws.*;

// Example of the request with minimum Java code on Passage Server
// The URL to run this request in a browser is
// http://127.0.0.1/myapp/api()

public class api
{
  public WTableList Request(WServer oServer, WParamList oParamList)
  { 
    WTableList oTableList;

    oTableList = oServer.newTableList();

    return oTableList; 
  }
}