aboutsummaryrefslogtreecommitdiff
path: root/src/routes.php
blob: f866789d150afc8ba0130b50238f1292c9759e5b (plain) (blame)
1
2
3
4
5
<?php
Route::api(['version' => 'v1', 'protected' => true, 'providers' => 'basic'], function () {
    Route::resource('bot', 'CamilStaps\BotleaguesApi\BotController');
    Route::resource('user', 'CamilStaps\BotleaguesApi\UserController');
});