use std::sync::Arc; use async_trait::async_trait; pub type DynProjectService = Arc; #[async_trait] pub trait ProjectService {}