first commit

This commit is contained in:
2026-01-02 19:08:56 +01:00
commit fdf37aa7b4
22 changed files with 4000 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
//! Linux Hello Common Library
//!
//! Shared types, configuration, and error handling for the Linux Hello
//! facial authentication system.
pub mod config;
pub mod error;
pub use config::Config;
pub use error::{Error, Result};