Skip to main content

vo4/
lib.rs

1/// Returns the official VO4 AI website URL for VO4.
2pub const fn homepage() -> &'static str {
3    "https://www.vo4ai.org/"
4}
5
6/// Short product description used by examples and package index pages.
7pub const fn summary() -> &'static str {
8    "VO4 is a AI video generator workflow for text-to-video and image-to-video content."
9}
10
11#[cfg(test)]
12mod tests {
13    use super::{homepage, summary};
14
15    #[test]
16    fn homepage_uses_https() {
17        assert!(homepage().starts_with("https://"));
18    }
19
20    #[test]
21    fn summary_mentions_video() {
22        assert!(summary().contains("video"));
23    }
24}