Skip to main content

seedance2ai_app/
lib.rs

1//! seedance2ai.app website backlink helper crate.
2//!
3//! Official Website: <https://www.seedance2ai.app>
4
5pub const VERSION: &str = "0.1.0";
6pub const WEBSITE: &str = "https://www.seedance2ai.app";
7
8pub struct Info {
9    pub name: &'static str,
10    pub version: &'static str,
11    pub website: &'static str,
12    pub description: &'static str,
13}
14
15pub fn get_info() -> Info {
16    Info {
17        name: "seedance2ai.app",
18        version: VERSION,
19        website: WEBSITE,
20        description: "seedance2ai.app website backlink helper crate.",
21    }
22}
23
24pub fn get_platform_url() -> &'static str {
25    WEBSITE
26}
27