feat: 新增语言列表,语言切换接口

This commit is contained in:
2025-01-18 17:21:34 +08:00
parent b221633a47
commit b11968bcf7
3 changed files with 64 additions and 0 deletions

View File

@@ -26,6 +26,15 @@ Route::group('v1', function () {
Route::post('login', 'Login/index');
});
// 语言模块
Route::group('language', function () {
// 语言列表
Route::get('list', 'Language/list');
// 语言切换
Route::get('cutover/:id', 'Language/cutover');
});
// 图片管理
Route::group('images', function () {
// 图片上传