public async Task <IActionResult> ListAutobots()
        {
            var allAutobots = await _datastore.GetAllAutobotsAsync();

            return(Ok(allAutobots));
        }