blob: 5398d0a7e015bff969f55da365c51aa7857650aa [file] [log] [blame]
xiukira687b9cb2025-05-29 15:15:02 +08001package com.g9.g9backend.controller;
2
3import org.slf4j.Logger;
4import org.slf4j.LoggerFactory;
5import org.springframework.web.bind.annotation.RequestMapping;
6import org.springframework.web.bind.annotation.RestController;
7
8/**
9 * ResourceController 资源控制器类,处理与资源相关的请求
10 *
11 * @author hcy
12 */
13@RestController
14@RequestMapping("/resource")
15public class ResourceController {
16
17 private final Logger logger = LoggerFactory.getLogger(ResourceController.class);
18}