1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-10-16 07:17:28 +00:00

Remove explicit pub(self)

This commit is contained in:
Steffo 2024-09-13 03:30:12 +02:00
parent 92e10304e2
commit c4392f012b
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
2 changed files with 9 additions and 8 deletions

View file

@ -1,12 +1,12 @@
pub mod structs;
pub mod stream;
pub(self) mod axum;
pub(self) mod ws;
pub(self) mod ws_receive;
pub(self) mod redis_xadd;
pub(self) mod redis_xread;
pub(self) mod ws_send;
pub(self) mod limit;
mod axum;
mod ws;
mod ws_receive;
mod redis_xadd;
mod redis_xread;
mod ws_send;
mod limit;
pub(crate) use self::axum::handler as board_websocket;

View file

@ -1,6 +1,7 @@
pub mod board;
pub mod structs;
pub(self) mod root;
mod root;
pub(crate) use root::version as version_route;
pub(crate) use root::healthcheck as healthcheck_route;