mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +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>
13 lines
300 B
C#
13 lines
300 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using BililiveRecorder.Core.Api.Model;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
internal interface IDanmakuServerApiClient : IDisposable
|
|
{
|
|
long GetUid();
|
|
Task<BilibiliApiResponse<DanmuInfo>> GetDanmakuServerAsync(int roomid);
|
|
}
|
|
}
|