@SuppressWarnings("unused")
public static void main(String[] args) throws Exception {
UIManager.put("swing.boldMetal", Boolean.FALSE);
Consumer model = new Consumer();
ClientView view = new ClientView(model);
new Controller(model, view);
view.setVisible(true);
}