Start on implementing a fake live-kit server

This commit is contained in:
Antonio Scandurra 2022-10-19 14:58:50 +02:00
parent fb5c6493cf
commit 288c039929
6 changed files with 134 additions and 35 deletions

View file

@ -1,8 +1,10 @@
pub mod prod;
pub mod test;
#[cfg(not(any(test, feature = "test-support")))]
pub use prod::*;
#[cfg(any(test, feature = "test-support"))]
mod test;
#[cfg(any(test, feature = "test-support"))]
pub use test::*;