aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/plugin/capable.rs
blob: 23369046c166c80a8e78f82ef4b4e1e81e637126 (plain)
1
2
3
4
5
6
7
8
//! ref: composer/src/Composer/Plugin/Capable.php

use indexmap::IndexMap;

// TODO(plugin): Plugin API - interface for plugins that expose capability implementations
pub trait Capable {
    fn get_capabilities(&self) -> IndexMap<String, String>;
}