mirror of
https://gh.wpcy.net/https://github.com/deepmentation/OllamaPriority.git
synced 2026-07-15 10:36:21 +08:00
14 lines
361 B
PHP
14 lines
361 B
PHP
<?php
|
|
|
|
// Hier können später zusätzliche Routen für das Modul hinzugefügt werden,
|
|
// zum Beispiel für eine Konfigurationsoberfläche oder API-Endpunkte.
|
|
|
|
Route::group([
|
|
'middleware' => ['web', 'auth'],
|
|
'prefix' => 'ollama-priority',
|
|
'namespace' => 'Modules\OllamaPriority\Http\Controllers'
|
|
], function() {
|
|
// Routen hier einfügen
|
|
});
|
|
|
|
?>
|