You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
324 B
PHP
10 lines
324 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\api\mobile\CheckUpdateController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::controller(CheckUpdateController::class)->group(function() {
|
|
Route::post('/check-update/video-update/latest', 'videoUpdateLatest');
|
|
Route::post('/check-update/apk-update/latest', 'apkUpdateLatest');
|
|
})
|
|
?>
|