yree 0.1.0

A crate for global constants and helpers for Yree.
Documentation
  • Coverage
  • 25%
    1 out of 4 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.05 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 247.01 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 8hantanu

yree

yree is a Rust crate for managing global constants and helper functions for Yree. It provides predefined URLs, paths, and utilities to ensure consistency across Yree projects.

Features

  • Centralized constants for URLs and paths
  • Helper functions for generating URLs dynamically

Example

use yree::{BASE_URL, get_static_file_url};

fn main() {
    println!("Base URL: {}", BASE_URL);
    println!("Static File URL: {}", get_static_file_url("image.png"));
}