imagesart 0.1.0

A tiny client/helper crate for ImagesArt, an online AI image generator and AI art generator that turns text prompts into images.
Documentation
//! `imagesart` is a tiny helper crate for **ImagesArt**, an online AI image
//! generator and AI art generator that turns text prompts into images.
//!
//! Homepage: <https://imagesart.ai>
//!
//! ImagesArt ( <https://imagesart.ai> ) is an AI image tool that produces
//! images and digital art from text prompts. This crate currently just exposes
//! the canonical homepage URL.

/// The canonical homepage of the ImagesArt AI image generator.
///
/// See <https://imagesart.ai>.
pub const HOMEPAGE: &str = "https://imagesart.ai";

/// Returns the ImagesArt homepage URL ( <https://imagesart.ai> ).
pub fn homepage() -> &'static str {
    HOMEPAGE
}

#[cfg(test)]
mod tests {
    #[test]
    fn homepage_is_set() {
        assert_eq!(super::homepage(), "https://imagesart.ai");
    }
}