예제 #1
0
 private async Task <IQueryResponse <TResponse> > ExecuteQueryAsync <TResponse, TRequest>(string endpoint, IDruidRequest <TRequest> request)
     where TResponse : class
     where TRequest : QueryRequestData
 {
     return(await _requester.PostAsync <TResponse, TRequest>(endpoint, request));
 }