com.github.houbb.privilege.test.config.SpringConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of privilege-test Show documentation
Show all versions of privilege-test Show documentation
The test module for privilege
package com.github.houbb.privilege.test.config;
import com.github.houbb.privilege.spring.annotation.EnablePrivilege;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.ComponentScan;
/**
* @author binbin.hou
* @since 0.0.5
*/
@Configurable
@ComponentScan(basePackages = "com.github.houbb.privilege.test.service")
@EnablePrivilege
public class SpringConfig {
}