UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
pool = new JedisPool(new JedisPoolConfig(), "localhost");
MainFrame mf = MainFrame.getInstance();
mf.setVisible(true);
Window.switchPanel(new Home());
}