24 lines
696 B
Java
24 lines
696 B
Java
package com.muyu.common.nacos;
|
|
|
|
import com.dtflys.forest.springboot.annotation.ForestScan;
|
|
import com.muyu.common.nacos.remote.interceptor.NacosNamespaceInterceptor;
|
|
import com.muyu.common.nacos.service.NacosServerService;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
/**
|
|
* @Author:LiDongJia
|
|
* @Package:com.muyu.common.nacos
|
|
* @Project:cloud-common-nacos-remote
|
|
* @name:NacosRemoteConfig
|
|
* @Date:2024/8/10 10:53
|
|
*/
|
|
@Configuration
|
|
@ForestScan(basePackages = "com.muyu.common.nacos.remote")
|
|
@Import(value = {
|
|
NacosNamespaceInterceptor.class,
|
|
NacosServerService.class
|
|
})
|
|
public class NacosRemoteConfig {
|
|
}
|