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

use crate::repository::WritableRepositoryInterface;

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

    fn is_fresh(&self) -> bool;
}