mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 12:15:42 +08:00
324c41ab1d
* 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>
11 lines
183 B
C#
11 lines
183 B
C#
using System.Net.Http;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
public interface IHttpClientAccessor
|
|
{
|
|
HttpClient MainHttpClient { get; }
|
|
long GetUid();
|
|
}
|
|
}
|