using System.Threading.Tasks; namespace API.Interfaces.Services { public interface ICleanupService { Task Cleanup(); void CleanupCacheDirectory(); } }