mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-02 07:14:30 -04:00
11 lines
222 B
C#
11 lines
222 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kavita.API.Services;
|
|
|
|
public interface IActiveUserTrackerService
|
|
{
|
|
void RecordActive(int userId);
|
|
Task FlushAsync(CancellationToken ct = default);
|
|
}
|