コード例 #1
0
ファイル: ApiKeyModule.cs プロジェクト: bdspaul/Warden-API
 public ApiKeyModule(IApiKeyService apiKeyService) : base("api-keys")
 {
     Get("", async args => await FetchCollection <BrowseApiKeys, ApiKey>
             (async x => await apiKeyService.BrowseAsync(x)).HandleAsync());
 }