blob: 7b137677382e45bdc0285fad05ee63394362a646 [file] [log] [blame]
package org.onoproject.yangtool;
import org.apache.commons.configuration.ConfigurationException;
import java.io.IOException;
/**
* Main of the uangloader tool in order to be called through command line.
*/
public class YangLoaderMain {
public static void main (String args []) throws IOException,
ConfigurationException, InterruptedException {
YangLoader yl = new YangLoader();
yl.generateBehaviourInterface(args[0], args[1]);
}
}