mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
12 lines
233 B
C#
12 lines
233 B
C#
using System.Threading.Tasks;
|
|
using API.DTOs.Stats;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IStatsService
|
|
{
|
|
Task PathData(ClientInfoDto clientInfoDto);
|
|
Task CollectAndSendStatsData();
|
|
}
|
|
}
|