mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 14:38:15 -05:00
13 lines
285 B
C#
13 lines
285 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IMaintenanceRepository
|
|
{
|
|
Task UpdateStatisticsAsync();
|
|
Task DisableCipherAutoStatsAsync();
|
|
Task RebuildIndexesAsync();
|
|
Task DeleteExpiredGrantsAsync();
|
|
}
|
|
}
|