servers/src/lib.rs

25 lines
641 B
Rust
Raw Normal View History

2022-06-17 11:43:23 +00:00
//! # Servers - Simple TCP server
//!
//! [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
pub mod commands;
pub mod plugins;
2022-06-04 19:34:53 +00:00
pub mod tcp;