Advertisement
BilakshanP

config.rs

Oct 16th, 2024
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.10 KB | Source Code | 0 0
  1. pub struct Config {
  2.     pub debug: bool,
  3. }
  4.  
  5. pub const CONFIG: Config = Config { debug: true };
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement