mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 21:54:47 -04:00
* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
13 lines
292 B
C#
13 lines
292 B
C#
using System.Threading.Tasks;
|
|
using API.DTOs;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IStatsService
|
|
{
|
|
Task PathData(ClientInfoDto clientInfoDto);
|
|
Task FinalizeStats();
|
|
Task CollectRelevantData();
|
|
Task CollectAndSendStatsData();
|
|
}
|
|
} |