blob: ca6de5c08c58a50a44543e86201ec9eb73d16451 [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;
/**
* UserController 用户控制器类,处理与用户相关的请求
*
* @author hcy
*/
@RestController
@RequestMapping("/user")
public class UserController {
private final Logger logger = LoggerFactory.getLogger(UserController.class);
}