seedance2ai_app 0.1.0

seedance2ai.app website backlink helper crate.
Documentation
//! seedance2ai.app website backlink helper crate.
//!
//! Official Website: <https://www.seedance2ai.app>

pub const VERSION: &str = "0.1.0";
pub const WEBSITE: &str = "https://www.seedance2ai.app";

pub struct Info {
    pub name: &'static str,
    pub version: &'static str,
    pub website: &'static str,
    pub description: &'static str,
}

pub fn get_info() -> Info {
    Info {
        name: "seedance2ai.app",
        version: VERSION,
        website: WEBSITE,
        description: "seedance2ai.app website backlink helper crate.",
    }
}

pub fn get_platform_url() -> &'static str {
    WEBSITE
}