public IActionResult Playlists()
        {
            var playlists = repo.GetAllPlaylists();

            return(View(playlists));
        }