initial commit

This commit is contained in:
Franz Heinzmann (Frando) 2021-02-19 14:40:58 +01:00
commit 091e6319cd
9 changed files with 700 additions and 0 deletions

8
src/lib.rs Normal file
View file

@ -0,0 +1,8 @@
pub mod osc;
pub mod spawn;
pub mod switcher;
pub mod udp;
pub trait Actor<C, E> {
fn send_command(command: C);
}