aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/installed_repository_interface.rs
blob: 711193a78fb7dea77fb8cc1d66ae4b5f7700741a (plain)
1
2
3
4
5
6
7
8
9
//! ref: composer/src/Composer/Repository/InstalledRepositoryInterface.php

use crate::repository::writable_repository_interface::WritableRepositoryInterface;

pub trait InstalledRepositoryInterface: WritableRepositoryInterface {
    fn get_dev_mode(&self) -> Option<bool>;

    fn is_fresh(&self) -> bool;
}