v0.1.0 skel

This commit is contained in:
2026-04-07 12:25:12 +02:00
commit ed38e73949
57 changed files with 981 additions and 0 deletions

15
sca-infra/src/lib.rs Normal file
View File

@@ -0,0 +1,15 @@
// file: sca-infra/src/lib.rs
//! Sase Coding Agent - Infra
#![deny(unreachable_pub)]
#![warn(missing_docs)]
// #![deny(missing_docs)]
mod audit;
mod config;
mod fs;
mod git;
mod process;
mod repository;
mod sqlite;