mirror of
https://github.com/Steffo99/todocolors.git
synced 2024-11-22 00:04:18 +00:00
Remove explicit pub(self)
This commit is contained in:
parent
92e10304e2
commit
c4392f012b
2 changed files with 9 additions and 8 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue