feat: 新增文章导出接口

This commit is contained in:
2025-01-15 13:49:34 +08:00
parent 94ba12d270
commit 8a7e998702
5 changed files with 117 additions and 1 deletions

View File

@@ -49,6 +49,9 @@ Route::group('v1', function () {
// 文章删除
Route::delete('delete/:id', 'Article/delete');
// 文章导出
Route::get('export', 'Article/export');
// 文章分类
Route::get('categorys', 'ArticleCategory/list');