blob: d291739378c244bf757508316f8c1365365bb910 [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;
/**
* AIController AI控制器类,处理与智能搜索/推荐相关的请求
*
* @author Seamher
*/
@RestController
@RequestMapping("/ai")
public class AIController {
private final Logger logger = LoggerFactory.getLogger(AIController.class);
}