blob: c5b316b95c5db7b9c17c38f0773be9320499639d [file] [log] [blame]
package com.g9.g9backend.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* RewardController 悬赏控制器类,处理与悬赏相关的请求
*
* @author Seamher
*/
@RestController
@RequestMapping("/reward")
public class RewardController {
private final Logger logger = LoggerFactory.getLogger(RewardController.class);
}