mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
Route::get('/', function () {
|
|
return view('index');
|
|
});
|
|
|
|
// Some backward compatibilities.
|
|
Route::get('/♫', function () {
|
|
return redirect('/');
|
|
});
|
|
|
|
Route::get('/remote', function () {
|
|
return view('remote');
|
|
});
|