package com.qianwen.core.report.endpoint; import com.qianwen.core.report.service.IReportFileService; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import springfox.documentation.annotations.ApiIgnore; @RequestMapping({"blade-report/report/rest"}) @ApiIgnore @RestController /* loaded from: blade-starter-report-9.3.0.0-SNAPSHOT.jar:org/springblade/core/report/endpoint/ReportBootEndpoint.class */ public class ReportBootEndpoint extends ReportEndpoint { public ReportBootEndpoint(IReportFileService service) { super(service); } }