Remove session-based identification and refactor routing

Eliminated `session_identify.rs` and related session-based logic to streamline the codebase. Refactored webhooks routes to use `agent_id` instead of `stream_id` for improved clarity. Adjusted configuration and dependencies to align with these changes.
This commit is contained in:
geoffsee
2025-05-27 12:48:34 -04:00
parent 07b76723c2
commit 2ea92c2ef1
5 changed files with 19 additions and 159 deletions

View File

@@ -10,7 +10,6 @@ mod handlers;
mod agents;
mod genaiscript;
mod utils;
mod session_identify;
#[tokio::main]
async fn main() {
@@ -18,7 +17,7 @@ async fn main() {
init_logging();
// init server configuration
let config = AppConfig::new();
let _ = AppConfig::new();
// Create router with all routes
let app = create_router();