Skip to main content

parse_targets

Function parse_targets 

Source
pub fn parse_targets(targets_str: &str) -> Vec<String>
Expand description

Split comma-separated targets into individual target strings

Examples: “:3000,:8080” -> [“:3000”, “:8080”] “node,python” -> [“node”, “python”] “:3000, 1234, node” -> [“:3000”, “1234”, “node”]