Extract settings from database

This commit is contained in:
Andras Schmelczer 2025-02-19 21:32:40 +00:00
parent aef5952c4d
commit 614e4a780a
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
20 changed files with 344 additions and 319 deletions

View file

@ -1,4 +1,4 @@
import type { RelativePath } from "../database/document-metadata";
import type { RelativePath } from "../persistence/database";
const locked = new Set<RelativePath>();
const waiters = new Map<RelativePath, (() => void)[]>();