1 2 3 4 5 6
use crate::contexts::status_cache::domain::cache::CachePort; /// キャッシュを更新するユースケース pub fn update(port: &impl CachePort, repo_id: &str, output: &str) { port.update(repo_id, output); }