package JThread.examples.shopper;

import JThread.socket.*;

public class Store {
  public static void main( String[] args ) {
      // init store
      ItemStock items = new ItemStock();
      items.initStock();
      Server.bind("store", items);

      // start store server
      Server.start(7000);
  }
}