chore: Fix module documentation for app_server

This commit is contained in:
Karolin Varner
2025-06-25 19:12:30 +02:00
parent 4deee59e90
commit 864407f90b

View File

@@ -1,5 +1,6 @@
/// This contains the bulk of the rosenpass server IO handling code whereas //! This contains the bulk of the rosenpass server IO handling code whereas
/// the actual cryptographic code lives in the [crate::protocol] module //! the actual cryptographic code lives in the [crate::protocol] module
use std::collections::{HashMap, VecDeque}; use std::collections::{HashMap, VecDeque};
use std::io::{stdout, ErrorKind, Write}; use std::io::{stdout, ErrorKind, Write};
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs}; use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};