ulm 0.3.2

AI-powered manpage assistant using local LLM
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Command execution and clipboard integration.
//!
//! This module handles executing commands and clipboard operations:
//! - Shell command execution
//! - Clipboard copy functionality

pub mod clipboard;
pub mod shell;

pub use clipboard::copy_to_clipboard;
pub use shell::execute_command;