byokey-daemon 0.7.1

Bring Your Own Keys — AI subscription-to-API proxy gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::missing_errors_doc)]

pub mod autostart;
pub mod error;
pub mod paths;
pub mod process;

/// `launchd` service label (macOS).
#[cfg(target_os = "macos")]
pub const LAUNCHD_LABEL: &str = "io.byokey.server";

/// `systemd` unit name (Linux).
#[cfg(target_os = "linux")]
pub const SYSTEMD_UNIT: &str = "byokey";