pub const fn homepage() -> &'static str {
"https://www.wan2-5.app"
}
pub const fn summary() -> &'static str {
"Wan2.5 is an AI platform for discovery and workflow reference use cases."
}
#[cfg(test)]
mod tests {
use super::{homepage, summary};
#[test]
fn homepage_uses_https() {
assert!(homepage().starts_with("https://"));
}
#[test]
fn summary_mentions_ai() {
assert!(summary().contains("AI"));
}
}