autocommit 2022-02-16 18:14:14 CET
This commit is contained in:
parent
086f2f73f4
commit
8d0b82c37c
17 changed files with 220 additions and 42 deletions
15
src/backends/dummy.rs
Normal file
15
src/backends/dummy.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
use std::rc::Rc;
|
||||
use crate::backend::Backend;
|
||||
|
||||
pub struct DummyBackend {
|
||||
|
||||
}
|
||||
|
||||
impl DummyBackend {
|
||||
pub fn new() -> Rc<Self> {
|
||||
Rc::new(Self { })
|
||||
}
|
||||
}
|
||||
|
||||
impl Backend for DummyBackend {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue