All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liumapp.datapay.government.GovernmentOperatorMain Maven / Gradle / Ivy

There is a newer version: v2.0.5
Show newest version
package com.liumapp.datapay.government;

import com.liumapp.datapay.government.config.GovernmentOperatorConfig;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * file GovernmentOperatorMain.java
 * author liumapp
 * github https://github.com/liumapp
 * email [email protected]
 * homepage http://www.liumapp.com
 * date 2018/8/27
 */
@EnableAutoConfiguration
@Configuration
@Import({GovernmentOperatorConfig.class})
public class GovernmentOperatorMain {

    @Bean
    public GovernmentOperator governmentOperator () {
        return new GovernmentOperator();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy