feat: Added ftfp server implementation
Audit / cargo audit (push) Failing after 5m5s

This commit is contained in:
2026-07-02 04:53:32 +02:00
parent f51746c5df
commit 1d5a4c61be
7 changed files with 656 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
mod error;
mod packet;
mod server;
pub use error::Error;
pub use packet::Packet;
pub use server::{Error as ServerError, serve};