blob: 11fa4950c51911dda4882c24fbefcc4046c50b69 [file] [log] [blame]
Jian Lidc94fc92016-01-29 17:38:11 -08001package org.onosproject.yangtool;
andreaa9d838e2015-11-10 18:18:10 -08002
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}