/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ke.go.moh.oec.cdstest; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author DevWakhutu */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here try { Thread.sleep(1000000); } catch (InterruptedException ex) { Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex); } } }