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