remove edn_ prefix from a couple macros

This commit is contained in:
🪞👃🪞 2025-01-18 00:14:46 +01:00
parent 798de37172
commit 34b35d08be
8 changed files with 25 additions and 25 deletions

View file

@ -22,8 +22,8 @@ pub enum ClockCommand {
SetQuant(f64),
SetSync(f64),
}
edn_provide_num!(u32: |self: Clock| {});
edn_provide!(f64: |self: Clock| {});
provide_num!(u32: |self: Clock| {});
provide!(f64: |self: Clock| {});
edn_command!(ClockCommand: |state: Clock| {
("play" [] Self::Play(None))
("play" [t: u32] Self::Play(t))