9 lines
164 B
Rust
9 lines
164 B
Rust
|
use std::sync::Arc;
|
||
|
|
||
|
use async_trait::async_trait;
|
||
|
|
||
|
pub type DynProjectService = Arc<dyn ProjectService + Send + Sync>;
|
||
|
|
||
|
#[async_trait]
|
||
|
pub trait ProjectService {}
|