public override async Task InvokeAsync(IHttpFunctionContext context) { context.Logger.LogInformation("Getting all streams..."); var models = await _streamService.GetAllStreamsAsync(); context.ActionResult = new OkObjectResult(models); }