Update default port from 8088 to 9000

- Update DEFAULT_BOTSERVER_URL constant in http_client.rs

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude Sonnet 4.5 2026-02-08 12:14:00 +00:00 committed by Rodrigo Rodriguez
parent 2765fa2eba
commit 38dc7c050d

View file

@ -4,7 +4,7 @@ use serde::{de::DeserializeOwned, Serialize};
use std::sync::Arc;
use std::time::Duration;
const DEFAULT_BOTSERVER_URL: &str = "https://localhost:8088";
const DEFAULT_BOTSERVER_URL: &str = "https://localhost:9000";
const DEFAULT_TIMEOUT_SECS: u64 = 30;
#[derive(Clone)]