私域操盘手 - 计划任务列表

This commit is contained in:
柳清爽
2025-05-07 10:49:28 +08:00
parent 8c4a899b43
commit 21a6907e52
5 changed files with 485 additions and 20 deletions

View File

@@ -81,4 +81,14 @@ Route::group('v1/', function () {
});
})->middleware(['jwt']);
// 计划任务相关路由
Route::group('plan', function () {
// 添加计划任务
Route::post('add', 'app\cunkebao\controller\Plan@index');
// 获取计划任务列表
Route::get('list', 'app\cunkebao\controller\Plan@getList');
});
})->middleware(['jwt']);
return [];