mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-17 23:52:34 +00:00
Centralizes config types (ServerConfig, CliConfig, expand_tilde) into a new arc-config crate. Makes arc-api an optional dependency of arc-cli behind a default-on "server" feature flag, so CLI-only builds skip heavy server deps (axum, tower, hyper, sqlx, arc-db, arc-types). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
191 B
Rust
11 lines
191 B
Rust
mod demo;
|
|
pub mod error;
|
|
pub mod github_webhooks;
|
|
pub mod jwt_auth;
|
|
pub mod serve;
|
|
pub mod server;
|
|
pub mod server_config {
|
|
pub use arc_config::server::*;
|
|
}
|
|
pub mod sessions;
|
|
pub mod tls;
|