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