spring/lib.rs
1#![deny(missing_docs)]
2//! For the complete documentation of spring, please click this address: [https://spring-rs.github.io]
3#![doc(html_favicon_url = "https://spring-rs.github.io/favicon.ico")]
4#![doc(html_logo_url = "https://spring-rs.github.io/logo.svg")]
5#![doc = include_str!("../README.md")]
6
7/// App Builder
8pub mod app;
9/// Config System:
10pub mod config;
11/// spring-rs definition error
12pub mod error;
13/// The log plugin is a built-in plugin of spring-rs and is also the first plugin loaded when the application starts.
14pub mod log;
15/// Plugin system: Through the documentation of this module you will learn how to implement your own plugins
16pub mod plugin;
17/// Banner
18pub mod banner;
19
20pub use app::App;
21pub use async_trait::async_trait;
22pub use spring_macros::auto_config;
23pub use tracing;
24pub use tracing_error::SpanTrace;