rayso-rs 0.1.2

An 'API' helper for Rayso
Documentation
1
2
3
4
5
6
7
use rayso_rs::RaysoConfig;

fn main() {
    let config = RaysoConfig::builder().background(false).padding(8).build();

    println!("Generated URL: {}", config.to_url());
}