com.powsybl.gse.demo.GseDemo Maven / Gradle / Ivy
/**
* Copyright (c) 2018, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.powsybl.gse.demo;
import com.powsybl.gse.app.GseApp;
import org.slf4j.bridge.SLF4JBridgeHandler;
/**
* @author Geoffroy Jamgotchian
*/
public final class GseDemo {
private GseDemo() {
}
public static void main(String[] args) {
SLF4JBridgeHandler.removeHandlersForRootLogger();
SLF4JBridgeHandler.install();
GseApp.main(args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy