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

com.liumapp.datapay.ocr.car.CarOperatorMain Maven / Gradle / Ivy

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

import com.liumapp.datapay.ocr.car.bean.CarApi;
import com.liumapp.datapay.ocr.car.config.CarOperatorConfig;
import com.liumapp.datapay.ocr.car.tool.CarOperator;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * Created by haoxy on 2018/11/23.
 * E-mail:[email protected]
 * github:https://github.com/haoxiaoyong1014
 */
@EnableAutoConfiguration
@Configuration
@Import({CarOperatorConfig.class})
public class CarOperatorMain {

    @Bean
    public CarOperator carOperator() {
        return new CarOperator();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy