public ApiKeyModule(IApiKeyProvider apiKeyProvider) : base("api-keys") { Get("", async args => await FetchCollection <BrowseApiKeys, ApiKeyDto> (async x => await apiKeyProvider.BrowseAsync(x)).HandleAsync()); }