App.java 1.08 KB
package org.emercit.proxymanager;


import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.ByteChannel;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import net.sourceforge.argparse4j.ArgumentParsers;
import net.sourceforge.argparse4j.impl.Arguments;
import net.sourceforge.argparse4j.inf.ArgumentParser;
import net.sourceforge.argparse4j.inf.ArgumentParserException;
import net.sourceforge.argparse4j.inf.Namespace;  

import org.apache.log4j.Logger;
import org.apache.log4j.ConsoleAppender; 
import org.apache.log4j.Level;
import org.apache.log4j.PatternLayout;
import org.apache.log4j.RollingFileAppender;
import org.emercit.proxymanager.service.ProxyLinux;


public class App 
{
	
	private static final Logger log = Logger.getLogger(App.class);
    
	private static ProxyLinux proxyLinux=new ProxyLinux();
	

	
    public static void main( String[] args )
    {
    	
    	proxyLinux.init();
 
    	
    }
}