Bat/src/main/java/cc/fascinated/bat/config/AppConfig.java

11 lines
294 B
Java
Raw Normal View History

2024-06-24 12:56:01 +00:00
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 { }