export interface IDistributedLockProvider { aquireLock(id: string): Promise; releaseLock(id: string): Promise; }