OllamaPriority/Http/routes.php
2025-02-01 19:32:37 +01:00

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
});
?>