send-sms 0.1.0

Command-line interface for sending SMS via FreeMobile API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configuration constants for the send-sms CLI
//!
//! This module contains all the configurable limits and parameters
//! used throughout the application.

/// Maximum message length for input validation
/// This is a reasonable limit to prevent extremely large messages
/// before they are processed by the chunking system
pub const MAX_MESSAGE_LENGTH: usize = 5000;

/// Preview length for message display in verbose mode  
/// Shows first N characters of the message for user feedback
pub const MESSAGE_PREVIEW_LENGTH: usize = 100;