import com.auto.commonlibrary.acl.threadpool.ThreadPool;
import com.auto.commonlibrary.acl.logger.Logger;
public class MyApp {
public static void main(String[] args) {
ACLFramework.init();
ThreadPool threadPool = new ThreadPool();
Runnable task = () -> {
};
threadPool.submit(task);
Logger.info("Application started");
ACLFramework.shutdown();
}
}