| Crates.io | yree |
| lib.rs | yree |
| version | 0.1.0 |
| created_at | 2024-11-27 15:59:18.401604+00 |
| updated_at | 2024-11-27 15:59:18.401604+00 |
| 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"));
}