tibba-model-builtin 0.2.2

built-in models for tibba (file, detector, http-stat, etc.)
Documentation
// Copyright 2026 Tree xie.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

mod detector_group;
mod detector_group_user;
mod file;
mod http_detector;
mod http_stat;
mod web_page_detector;

pub use detector_group::*;
pub use detector_group_user::*;
pub use file::*;
pub use http_detector::*;
pub use http_stat::*;
pub use web_page_detector::*;

// 重新导出 tibba-model 的全部公开类型,消费方只需依赖本 crate 即可。
pub use tibba_model::*;