mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
* Cleaned up error interceptor to avoid sending auth errors (when a 500 occurs) to sentry as auth errors aren't issues. * Added extra stat collection * Fixed a bad gitignore which ignored anything in a stats directory
14 lines
299 B
C#
14 lines
299 B
C#
using System.Threading.Tasks;
|
|
using API.DTOs.Stats;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IStatsService
|
|
{
|
|
Task PathData(ClientInfoDto clientInfoDto);
|
|
Task FinalizeStats();
|
|
Task CollectRelevantData();
|
|
Task CollectAndSendStatsData();
|
|
}
|
|
}
|