/*
 * Main.java
 */

package dblpconverter;

/**
 *
 * @author Gersk
 *
 * Class Main of the DBLPConverter application
 */
public class Main 
{
    
    private static Application application;
    
    public static void main(String[] args) 
    {
        application = new Application(args[0], args[1]);
    }
    
}
