1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-08 14:38:15 -05:00
bitwarden/src/Core/Repositories/IMaintenanceRepository.cs
2019-02-03 22:39:53 -05:00

13 lines
285 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Repositories
{
public interface IMaintenanceRepository
{
Task UpdateStatisticsAsync();
Task DisableCipherAutoStatsAsync();
Task RebuildIndexesAsync();
Task DeleteExpiredGrantsAsync();
}
}