com.farao_community.farao.cse_valid_publication.app.CseValidPublicationApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gridcapa-cse-valid-publication-app Show documentation
Show all versions of gridcapa-cse-valid-publication-app Show documentation
GridCapa Cse Valid publication application
/*
* Copyright (c) 2022, 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.farao_community.farao.cse_valid_publication.app;
import com.farao_community.farao.cse_valid_publication.app.configuration.FilenamesConfiguration;
import com.farao_community.farao.cse_valid_publication.app.configuration.UrlConfiguration;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
/**
* @author Ameni Walha {@literal }
*/
@SuppressWarnings("hideutilityclassconstructor")
@SpringBootApplication
@EnableConfigurationProperties({FilenamesConfiguration.class, UrlConfiguration.class})
public class CseValidPublicationApplication {
public static void main(String[] args) {
SpringApplication.run(CseValidPublicationApplication.class, args);
}
}