tibba_model_builtin/lib.rs
1// Copyright 2026 Tree xie.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15mod detector_group;
16mod detector_group_user;
17mod file;
18mod http_detector;
19mod http_stat;
20mod web_page_detector;
21
22pub use detector_group::*;
23pub use detector_group_user::*;
24pub use file::*;
25pub use http_detector::*;
26pub use http_stat::*;
27pub use web_page_detector::*;
28
29// 重新导出 tibba-model 的全部公开类型,消费方只需依赖本 crate 即可。
30pub use tibba_model::*;