using System.Threading.Tasks; using API.DTOs.Stats; namespace API.Interfaces.Services { public interface IStatsService { Task Send(); Task GetServerInfo(); } }