mirror of
https://github.com/bitwarden/server.git
synced 2025-04-30 01:02:21 -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();
|
|
}
|
|
}
|