HttpUtil.cs 287 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net.Http;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace RevokeMsgPatcher.Utils
  8. {
  9. public class HttpUtil
  10. {
  11. public static HttpClient Client { get; } = new HttpClient();
  12. }
  13. }