inital commit
This commit is contained in:
21
routes/api.php
Normal file
21
routes/api.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| API Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here is where you can register API routes for your application. These
|
||||
| routes are loaded by the RouteServiceProvider within a group which
|
||||
| is assigned the "api" middleware group. Enjoy building your API!
|
||||
|
|
||||
*/
|
||||
|
||||
// for testing
|
||||
Route::post('test',[\App\Http\Controllers\TestController::class,'testing']);
|
||||
Route::post('reverse/test',[\App\Http\Controllers\TestController::class,'reverse']);
|
||||
Route::get('generatekey',[\App\Http\Controllers\TestController::class,'generateKeys']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user