fixed up some parsing and removed some edn mentions

This commit is contained in:
🪞👃🪞 2025-01-18 01:54:06 +01:00
parent 5e7b867aba
commit 452bdf9598
15 changed files with 290 additions and 292 deletions

View file

@ -24,7 +24,7 @@ pub enum ClockCommand {
}
provide_num!(u32: |self: Clock| {});
provide!(f64: |self: Clock| {});
edn_command!(ClockCommand: |state: Clock| {
atom_command!(ClockCommand: |state: Clock| {
("play" [] Self::Play(None))
("play" [t: u32] Self::Play(t))
("pause" [] Self::Pause(None))