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

17
sca-app/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
# file: sca-app/Cargo.toml
[package]
name = "sca-app"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
sca-core = { path = "../sca-core" }
sca-infra = { path = "../sca-infra" }
sca-ia = { path = "../sca-ia" }
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true

2
sca-app/src/api.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-app/src/api.rs

2
sca-app/src/app.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-app/src/app.rs

2
sca-app/src/bootstrap.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-app/src/bootstrap.rs

2
sca-app/src/cli.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-app/src/cli.rs

15
sca-app/src/main.rs Normal file
View File

@@ -0,0 +1,15 @@
// file: sca-app/src/main.rs
//! Sase Coding Agent - Main App
#![deny(unreachable_pub)]
#![warn(missing_docs)]
// #![deny(missing_docs)]
mod api;
mod app;
mod bootstrap;
mod cli;
fn main() {}