/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package biblioteca.admin.main;
import biblioteca.admin.catalogos.formularios.FrmEmailPrincipal;
/**
*
* @author ernaes.trujillo
*/
public class Main {
public static void main(String[] arg){
FrmEmailPrincipal ventana=new FrmEmailPrincipal();
ventana.setVisible(true);
}
}