//! Steam friend code utilities.
//!
//! This crate provides two types of Steam friend codes:
//!
//! - **CSGO friend code** ([`CsgoFriendCode`]) — Base32/MD5 encoded codes used
//! in CS:GO/CS2 in-game friend system (e.g. `ABCDE-FGHJK-LMNPQ`).
//! - **Short Steam friend code** ([`create_short_steam_friend_code`]) — hex-mapped codes
//! used in Steam quick invite links (`https://s.team/p/{code}/{token}`).
pub use CsgoFriendCode;
pub use ;
// Backward-compatible alias
pub type SteamFriendCode = CsgoFriendCode;