9 lines
203 B
Rust
9 lines
203 B
Rust
use std::sync::Arc;
|
|
|
|
use domain::ports::{ChannelCommand, ChannelQuery};
|
|
|
|
pub struct ConfigSnapshotDeps {
|
|
pub channel_command: Arc<dyn ChannelCommand>,
|
|
pub channel_query: Arc<dyn ChannelQuery>,
|
|
}
|