wip: more edn rendering setup

This commit is contained in:
🪞👃🪞 2025-01-05 04:48:01 +01:00
parent 174a7ee614
commit f1b3fc0040
10 changed files with 85 additions and 47 deletions

8
edn/src/edn_main.rs Normal file
View file

@ -0,0 +1,8 @@
use crate::*;
#[macro_export] macro_rules! run_tek_edn {
($source:expr) => {
struct EdnRunner;
impl<E: Engine> EdnLayout<E> for EdnRunner;
}
}