divide repository in src and lib

This commit is contained in:
timeshifter
2022-08-14 21:14:01 +02:00
parent 4bac3290e5
commit a43cdc4494
19 changed files with 41 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
#[allow(unused_macros)]
macro_rules! dbg_println {
($($arg:tt)*) => (#[cfg(debug_assertions)] println!($($arg)*));
}