bkmr 7.4.1

Knowledge management for humans and agents — bookmarks, snippets, etc, searchable, executable.
Documentation
// src/lib.rs
#![crate_type = "lib"]
#![crate_name = "bkmr"]

// Core modules
pub mod application;
pub mod domain;
pub mod infrastructure;

// CLI modules
pub mod app_state;
pub mod cli;
pub mod config;
pub mod exitcode;
pub mod util;

// LSP module (optional)
pub mod lsp;

#[cfg(test)]
mod tests {}