public async Task <IActionResult> GetAll()
        {
            var planets = await _planetsRepository.GetPlanets().ConfigureAwait(false);

            return(Ok(planets));
        }