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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user