From d7905cb0eeebce94c5b949fce9d7dde7bb3b926c Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 20 Jun 2026 15:25:51 -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 f37aea0..214dbaa 100644 --- a/src/caller/mod.rs +++ b/src/caller/mod.rs @@ -33,6 +33,8 @@ pub mod endpoints { "/api/v1/schedule/message/event/response/record"; /// Constant for getting Message Event Response endpoint pub const GET_MESSAGE_EVENT_RESPONSE: &str = "/api/v1/schedule/message/event/response"; + /// Constant for sending a message instantly. No scheduling + pub const INSTANT_MESSAGE: &str = "/api/v1/instant/message"; } pub mod response {