servers/src/lib.rs

30 lines
761 B
Rust
Raw Normal View History

2022-06-25 19:41:25 +00:00
//! # Servers - Simple TCP and WebSocket server
2022-06-17 11:43:23 +00:00
//!
//! [image]: https://socialify.git.ci/MedzikUser/servers/image?description=1&font=KoHo&language=1&owner=1&pattern=Circuit%20Board&theme=Light
//!
//! [![image]](https://github.com/MedzikUser/servers)
//!
//! ## 👨‍💻 Building
//!
//! First clone the repository: `git clone https://github.com/MedzikUser/servers.git`
//!
//! ### Requirements
//! - Rust
//!
//! To build run the command: `cargo build --release`
//!
//! The compiled binary can be found in `./target/release/servers`
//!
//! ## Writing plugins
//!
//! Go to [plugins](plugins) module
2022-06-20 20:20:25 +00:00
#![doc(html_root_url = "https://servers.medzik.xyz")]
pub mod commands;
pub mod logger;
pub mod plugins;
2022-06-04 19:34:53 +00:00
pub mod tcp;
pub use async_trait::async_trait;