diff --git a/src/TurboHXServiceProvider.php b/src/TurboHXServiceProvider.php index e5cd307..9e9894e 100644 --- a/src/TurboHXServiceProvider.php +++ b/src/TurboHXServiceProvider.php @@ -12,24 +12,5 @@ public function register() { $this->app->singleton(FolioManager::class, TurboHX::class); $this->app->bind(FolioRouter::class, Router::class); - - Route::get('/turbo', function () { - return 'Hello World'; - }); - } - - public function boot() - { - // foreach (File::glob(base_path('.www').'/[0-9]*', GLOB_ONLYDIR) as $version) { - // $version = basename($version); - // Folio::path(base_path('.www/'.$version)) - // ->uri('/v'.$version) - // ->middleware([ - // 'web', - // 'auth:sanctum', - // config('jetstream.auth_session'), - // 'verified', - // ]); - // } } }