clipmem 0.5.2

macOS clipboard memory backed by SQLite and searchable from agent runtimes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod context;
mod launchctl;
mod manage;
mod model;
mod render;
mod status;

pub(super) use self::manage::{setup, start, stop, uninstall};
pub(super) use self::model::{ServiceProviderStatus, ServiceStatusReport};
pub(super) use self::render::{
    render_service_action_text, render_service_status_text, render_setup_text,
};
pub(super) use self::status::status_report;

#[cfg(test)]
mod tests;