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
//! send-sms CLI - Command-line interface for FreeMobile SMS API
//!
//! This crate provides a complete command-line interface for sending SMS messages
//! via the FreeMobile API. It supports multiple input methods, smart stdin detection,
//! interactive prompts, and comprehensive configuration options.

pub mod config;
pub mod constants;
pub mod input;

pub use config::Config;
pub use input::InputHandler;