//! Re-exports of case-directory artefact filenames from their //! canonical source-of-truth locations. //! //! Tests that need to read, write, or assert the absence of per-case //! artefacts (`oneliner.json`, `.closed`, `document.md`, //! `analysis_input.json`) pull these names from here instead of //! inlining string literals. If the server renames a sidecar in the //! future, test call-sites fail to compile instead of silently //! asserting against the old name. pub use doctate_common::ONELINER_FILENAME; pub use doctate_server::analyze::{ANALYSIS_INPUT_FILE, DOCUMENT_FILE}; pub use doctate_server::paths::CLOSE_MARKER;