KKSU
2024-05-13 6ff3fd9cceb165788696bb8c0fee36ff29ef1157
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cc.mrbird.febs.dapp.soccer.controller;
 
import cc.mrbird.febs.dapp.soccer.service.SoccerOnlineService;
import io.swagger.annotations.Api;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Slf4j
@RequiredArgsConstructor
@CrossOrigin("*")
@RestController
@Api(value = "FOOTBALL-ONLINE", tags = "FOOTBALL-ONLINE")
@RequestMapping(value = "/dapi/footballOnline")
public class SoccerOnlineController {
 
    private final SoccerOnlineService soccerOnlineService;
 
    /**
     *
     */
 
}