Add initial services
This commit is contained in:
8
como_core/src/projects/mod.rs
Normal file
8
como_core/src/projects/mod.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
use std::sync::Arc;
|
||||
|
||||
use async_trait::async_trait;
|
||||
|
||||
pub type DynProjectService = Arc<dyn ProjectService + Send + Sync>;
|
||||
|
||||
#[async_trait]
|
||||
pub trait ProjectService {}
|
||||
Reference in New Issue
Block a user