1mod cli; 2 3use axum::Router; 4use systemprompt_runtime::AppContext; 5 6pub fn router() -> Router<AppContext> { 7 Router::new().nest("/cli", cli::router()) 8}