aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/version_cache_interface.rs
blob: ce0b59135fb2710dd24b0f4ee93d6ca6096cbbb2 (plain)
1
2
3
4
5
6
7
//! ref: composer/src/Composer/Repository/VersionCacheInterface.php

pub trait VersionCacheInterface {
    // No class implementing this interface exists in Composer's codebase; a plugin may provide
    // one, but plugin support is not yet decided. Using () as a placeholder until then.
    fn get_version_package(&self, version: &str, identifier: &str) -> ();
}