mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
11 lines
200 B
C#
11 lines
200 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IMaintenanceRepository
|
|
{
|
|
Task UpdateStatisticsAsync();
|
|
Task RebuildIndexesAsync();
|
|
}
|
|
}
|