Skip to main content

send_sms/
lib.rs

1//! send-sms CLI - Command-line interface for FreeMobile SMS API
2//!
3//! This crate provides a complete command-line interface for sending SMS messages
4//! via the FreeMobile API. It supports multiple input methods, smart stdin detection,
5//! interactive prompts, and comprehensive configuration options.
6
7pub mod config;
8pub mod constants;
9pub mod input;
10
11pub use config::Config;
12pub use input::InputHandler;