| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly |
| 2 |
} |
| 3 |
/** |
| 4 |
* @var FluentCommunity\Framework\Http\Router $router |
| 5 |
*/ |
| 6 |
|
| 7 |
$router->namespace('FluentCommunity\App\Http\Controllers')->group(function ($router) { |
| 8 |
require_once __DIR__ . '/api.php'; |
| 9 |
}); |
| 10 |
|
| 11 |
//if (file_exists(FLUENT_COMMUNITY_PLUGIN_DIR .'dev/seed-routes.php')) { |
| 12 |
// require_once FLUENT_COMMUNITY_PLUGIN_DIR .'dev/seed-routes.php'; |
| 13 |
//} |
| 14 |
|