pub const fn homepage() -> &'static str {
"https://www.hailuo3.app"
}
pub const fn summary() -> &'static str {
"Hailuo3 is an AI video generator for text-to-video and image-to-video workflows."
}
#[cfg(test)]
mod tests {
use super::{homepage, summary};
#[test]
fn homepage_uses_https() {
assert!(homepage().starts_with("https://"));
}
#[test]
fn summary_mentions_video() {
assert!(summary().contains("video"));
}
}