kandil_code 2.1.1

Intelligent development platform (CLI + TUI + Multi-Agent System) with cross-platform AI model benchmarking, system diagnostics, and advanced development tools
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Security utilities for Kandil Code.
//!
//! This module centralizes access to sensitive credentials so other parts of
//! the codebase can rely on a hardened API rather than touching the OS
//! keyring directly.

pub mod credentials;
pub mod mobile;
pub mod model;
pub mod platform;

#[allow(unused_imports)]
pub use credentials::{CredentialManager, CredentialState};