public async Task <IActionResult> Get(int twitchId) { // TODO: Do this better. Extract and remove duplication. bool isLive = await _twitchService.IsLive(twitchId); return(Ok(isLive)); }