Files
konobangu/apps/recorder/src/cache/service.rs

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 {})
}
}