mirror of
https://github.com/house-of-vanity/v2-uri-parser.git
synced 2026-02-05 01:48:00 +00:00
8 lines
143 B
Rust
8 lines
143 B
Rust
mod parser;
|
|
|
|
fn main() {
|
|
let args: Vec<String> = std::env::args().collect();
|
|
let uri = args.get(1).unwrap();
|
|
parser::parse(uri);
|
|
}
|