introduce workspace

This commit is contained in:
Dr. Matthias Ratajczak
2023-02-13 19:46:35 +01:00
parent cef1b6e655
commit 2b7b7f8e28
37 changed files with 90 additions and 68 deletions
+17
View File
@@ -0,0 +1,17 @@
mod actual;
mod backend_trait;
mod iter;
mod macros;
mod todo_per_backend;
pub(crate) use backend_trait::Backend;
pub(crate) use iter::BackendIter;
pub(crate) use todo_per_backend::ToDoPerBackend;
use ::macros::Register;
#[derive(Debug, Register)]
pub(crate) enum Backends {
Pacman,
Rust,
}