11 lines
294 B
Java
11 lines
294 B
Java
package cc.fascinated.bat.config;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* @author Fascinated (fascinated7)
|
|
*/
|
|
@Configuration
|
|
@ComponentScan(basePackages = "cc.fascinated.bat")
|
|
public class AppConfig { } |