feat: 新增图片上传接口

This commit is contained in:
2025-01-14 17:04:03 +08:00
parent 5d1f4cc191
commit a57ffcb50d
5 changed files with 123 additions and 0 deletions

View File

@@ -26,6 +26,12 @@ Route::group('v1', function () {
Route::post('login', 'Login/index');
});
// 图片管理
Route::group('images', function () {
// 图片上传
Route::post('upload', 'Images/upload');
});
// 文章模块
Route::group('article', function () {
// 文章列表