mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 13:57:47 +01:00
9 lines
299 B
C#
9 lines
299 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface ITimeSeriesStatsReporter
|
|
{
|
|
ValueTask<IReadOnlyList<BandwidthPoint>> GetBandwidth(DateTime start, DateTime end);
|
|
ValueTask<IReadOnlyList<BandwidthPoint>> GetBandwidth(Guid id, DateTime start, DateTime end);
|
|
} |