adrema/routes/remote.php

8 lines
234 B
PHP
Raw Normal View History

2024-02-22 00:03:11 +01:00
<?php
use App\Remote\Actions\LoginAction;
2024-02-22 00:40:19 +01:00
use App\Remote\Actions\SearchAction;
2024-02-22 00:03:11 +01:00
Route::post('/nami/token', LoginAction::class)->name('remote.nami.token');
2024-02-22 00:40:19 +01:00
Route::post('/nami/search', SearchAction::class)->name('remote.nami.search');