19 lines
336 B
Java
19 lines
336 B
Java
|
package cn.bunny.services.controller;
|
||
|
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 多语言表 前端控制器
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Bunny
|
||
|
* @since 2024-09-28
|
||
|
*/
|
||
|
@RestController
|
||
|
@RequestMapping("/i18n")
|
||
|
public class I18nController {
|
||
|
|
||
|
}
|