Skip to main content

amql_engine/
file_lock.rs

1//! Per-file lock manager — re-exported from amql-file-lock with domain key type.
2
3use crate::types::RelativePath;
4
5/// Per-file lock manager keyed by `RelativePath`.
6pub type FileLockManager = amql_file_lock::FileLockManager<RelativePath>;