webparse/url/mod.rs
1// Copyright 2022 - 2023 Wenmeng See the COPYRIGHT
2// file at the top-level directory of this distribution.
3//
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// http://www.apache.org/licenses/LICENSE-2.0>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8//
9// Author: tickbh
10// -----
11// Created Date: 2023/08/16 09:48:44
12
13
14mod scheme;
15mod builder;
16mod error;
17mod url;
18
19
20pub use scheme::Scheme;
21pub use builder::Builder;
22pub use error::UrlError;
23pub use url::Url;