BililiveRecorder/BililiveRecorder.Core/Api/IHttpClientAccessor.cs
进栈检票 324c41ab1d
feat(core): connect to danmaku server with account credentials (#498)
* danmaku: get svr with ck & conn with uid from ck

* apply code chagnes for pr

* fix bug and add description in advanced settings

* fix test

---------

Co-authored-by: genteure <genteure@gmail.com>
2023-07-04 00:34:11 +00:00

11 lines
183 B
C#

using System.Net.Http;
namespace BililiveRecorder.Core.Api
{
public interface IHttpClientAccessor
{
HttpClient MainHttpClient { get; }
long GetUid();
}
}