Skip to main content

trait_kit/core/
mod.rs

1// Copyright (c) 2026 Kirky.X
2//
3// Licensed under the MIT License
4// See LICENSE file in the project root for full license information.
5
6//! Core traits and types for module declaration.
7
8pub mod error;
9pub mod meta;
10
11pub use error::KitError;
12pub use meta::{AutoBuilder, ModuleMeta};