package com.xinquan.course.api.feign; import com.xinquan.common.core.constant.ServiceNameConstants; import com.xinquan.course.api.factory.RemoteCourseFallbackFactory; import org.springframework.cloud.openfeign.FeignClient; /** * @author mitao * @date 2024/8/21 */ @FeignClient(contextId = "remoteFileService", value = ServiceNameConstants.COURSE_SERVICE, fallbackFactory = RemoteCourseFallbackFactory.class) public interface RemoteCourseService { }