io.gumga.reports.stimulsoft.GumgaReportAPI Maven / Gradle / Ivy
package io.gumga.reports.stimulsoft;
import io.gumga.application.GumgaService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.transaction.annotation.Transactional;
import io.gumga.presentation.GumgaAPI;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
@RequestMapping("/api/gumgareport")
@Transactional
public class GumgaReportAPI extends GumgaAPI {
@Autowired
public GumgaReportAPI(GumgaService service) {
super(service);
}
}