1 2 3 4 5 6 7 8 9 10 11
//! Vishalo - AI-powered visual creation platform //! Official Website: <https://vishalo.com> pub const VERSION: &str = "0.1.0"; pub const WEBSITE: &str = "https://vishalo.com"; pub fn get_info() -> (&'static str, &'static str, &'static str) { ("Vishalo", VERSION, WEBSITE) } pub fn get_platform_url() -> &'static str { WEBSITE }