Remove Executor trait from collab and use an enum instead

This will let us save off the executor and avoid using generics.
This commit is contained in:
Antonio Scandurra 2022-12-06 16:45:09 +01:00
parent 5879dcc4e9
commit d74fb97158
4 changed files with 48 additions and 53 deletions

View file

@ -2,6 +2,7 @@ pub mod api;
pub mod auth;
pub mod db;
pub mod env;
mod executor;
#[cfg(test)]
mod integration_tests;
pub mod rpc;