package com.txtr.hibernatedelta.generator;
import java.io.File;
public class DeltaSqlGenerator {
public static void main(String[] args) throws Exception {
final String sql = new BackendSqlGenerator().createUpdateAgainstExistingSchema(new File(args[3]).toURI().toURL(), args[0], args[1], args[2], new File(args[4]).toURI().toURL());
System.out.println(sql);
}
}