make proto module private for now

This commit is contained in:
Aram 🍐 2022-08-20 11:22:57 -04:00
parent 821414d9cd
commit 3e70c36b85

View file

@ -17,7 +17,7 @@ pub mod blocking;
/// Reference: <https://networkupstools.org/docs/developer-guide.chunked/ar01s09.html>
#[allow(dead_code)]
#[macro_use]
pub mod proto;
pub(crate) mod proto;
/// Async client implementation for NUT, using Tokio.
#[cfg(feature = "async")]
pub mod tokio;