mirror of
https://gh.wpcy.net/https://github.com/deepmentation/OllamaPriority.git
synced 2026-07-16 05:50:13 +08:00
19 lines
601 B
PHP
19 lines
601 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Module Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register all of the routes for the module.
|
|
| It's a breeze. Simply tell Laravel the URIs it should respond to
|
|
| and give it the controller to call when that URI is requested.
|
|
|
|
|
*/
|
|
|
|
Route::group(['prefix' => 'ollamapriority', 'middleware' => ['web', 'auth']], function() {
|
|
// Hier können später zusätzliche Routen hinzugefügt werden,
|
|
// z.B. für eine Konfigurationsoberfläche
|
|
});
|
|
|
|
?>
|