package com.xcong.excoin.modules.yunding.controller;
|
|
import com.xcong.excoin.modules.activity.service.ActivityService;
|
import com.xcong.excoin.modules.yunding.service.YunDingService;
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import javax.annotation.Resource;
|
|
@RestController
|
@RequestMapping(value = "api/yd")
|
@Slf4j
|
@Api(value = "YunDingController", tags = "云顶算力")
|
public class YunDingController {
|
|
@Resource
|
YunDingService yunDingService;
|
|
|
}
|