blob: 57007b7a631e6920df7c44edfc94e640b19d6324 [file] [log] [blame]
//! A module for representations of starlark constructs
mod glob;
mod label;
mod select;
pub use glob::*;
pub use label::*;
pub use select::*;
pub type SelectStringList = SelectList<String>;
pub type SelectStringDict = SelectDict<String>;