load(); // ====================================== // Inicializa KrothiumAPI com configs // ====================================== KrothiumAPI::init(config: [ 'errors' => [ 'error_log' => realpath(path: __DIR__ . '/../storage/Logs/php-error.log'), ], 'constants' => [ 'APP_SYS_MODE' => 'DEV', // DEV | PROD 'ROOT_SYSTEM_PATH' => realpath(path: __DIR__ . "/.."), 'INI_SYSTEM_PATH' => realpath(path: __DIR__ . "/../src"), 'MODULE_PATH' => realpath(path: __DIR__ . "/../src/Module"), 'STORAGE_FOLDER_PATH' => realpath(path: __DIR__ . "/../storage"), 'ROUTER_ALLOWED_ORIGINS' => [ '*' ] ], 'system' => [ 'enable_session' => true, 'default_timezone' => 'America/Fortaleza', ], 'logger' => [ 'driver' => 'FILE', 'logDir' => realpath(path: __DIR__ . '/../storage/Logs') ] ]); // Importa Rotas da v0 Router::group( prefix: '/v0', callback: function() { require_once realpath(path: __DIR__ . '/../app/Module/v0/Auth/Routes/Routes.php'); require_once realpath(path: __DIR__ . '/../app/Module/v0/Contato/Routes/Routes.php'); } ); // ============================ // Dispara o roteador // ============================ KrothiumAPI::routerDispatch();