package dao.ex6;

import java.util.ArrayList;
import java.util.List;

public class Driver {

  public static void main(String[] args) {

    System.out.println("Running the client 6");

    Invoker i = new Invoker("localhost", 4444);

    Dao6 d = new Dao6();

    List<Dao6> l = new ArrayList<Dao6>();

    l.add(d);

    i.invoke(l, new CommandImpl());

  }

}
