From 83aae8e344d040ec5b27e47a453f37a2260ccb0b Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 17 Jun 2026 16:02:07 -0400 Subject: [PATCH] Adding constant for endpoint --- src/caller/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/caller/mod.rs b/src/caller/mod.rs index 3a9e62a..3c9a585 100644 --- a/src/caller/mod.rs +++ b/src/caller/mod.rs @@ -14,6 +14,8 @@ pub mod endpoints { pub const ADD_MESSAGE: &str = "/api/v1/message/new"; /// Constant for getting messages endpoint pub const GET_MESSAGE: &str = "/api/v1/message"; + /// Constant for scheduling message endpoint + pub const SCHEDULE_MESSAGE: &str = "api/v1/schedule/message"; } pub mod response {