Files
Reseaux-de-neurones-artific…/routes/api.php
Matthias Guillitte 650cf56045
Some checks failed
linter / quality (push) Failing after 6m40s
tests / ci (8.4) (push) Failing after 10s
tests / ci (8.5) (push) Failing after 11s
git init
2026-03-03 11:10:38 +01:00

8 lines
215 B
PHP

<?php
use App\Http\Controllers\PerceptronController;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
Route::post('perceptron/run', [PerceptronController::class, 'run'])->name('perceptron.run');