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; | |
/** | |
* FileController 文件控制器类,处理与文件相关的请求 | |
* | |
* @author Seamher | |
*/ | |
@RestController | |
@RequestMapping("/file") | |
public class FileController { | |
private final Logger logger = LoggerFactory.getLogger(FileController.class); | |
} |