Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
59fab4e79f62bfa13551ac851a40696c24c0c3a4
/
.
/
crate_universe
/
src
/
utils
/
starlark.rs
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
>;