11 lines
199 B
Rust
11 lines
199 B
Rust
use super::CacheConfig;
|
|
use crate::errors::RResult;
|
|
|
|
pub struct CacheService {}
|
|
|
|
impl CacheService {
|
|
pub async fn from_config(_config: CacheConfig) -> RResult<Self> {
|
|
Ok(Self {})
|
|
}
|
|
}
|