blob: 7b137677382e45bdc0285fad05ee63394362a646 [file] [log] [blame]
andreaa9d838e2015-11-10 18:18:10 -08001package org.onoproject.yangtool;
2
3import org.apache.commons.configuration.ConfigurationException;
4
5import java.io.IOException;
6
7/**
8 * Main of the uangloader tool in order to be called through command line.
9 */
10public class YangLoaderMain {
11 public static void main (String args []) throws IOException,
12 ConfigurationException, InterruptedException {
13 YangLoader yl = new YangLoader();
14 yl.generateBehaviourInterface(args[0], args[1]);
15 }
16}