You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

IRestClientProvider.cs 221 B

12345678910
  1. using System.Collections.Generic;
  2. using System.Threading;
  3. namespace Discord.Net.Rest
  4. {
  5. public interface IRestClientProvider
  6. {
  7. IRestClient Create(string baseUrl, CancellationToken cancelToken);
  8. }
  9. }