Crates.io | yree |
lib.rs | yree |
version | 0.1.0 |
source | src |
created_at | 2024-11-27 15:59:18.401604 |
updated_at | 2024-11-27 15:59:18.401604 |
description | A crate for global constants and helpers for Yree. |
homepage | |
repository | https://github.com/yree/yree |
max_upload_size | |
id | 1463252 |
size | 2,050 |
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.
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"));
}