lib/diag.rs refactor

This splits diag.rs, which was growing way too big for my taste, into a
number of submodules. This should help us compartmentalize tests better,
as well as use mod namespaces to shorten our struct/enum names.
This commit is contained in:
Will Greenberg
2026-02-13 13:42:42 -08:00
parent 9627cec737
commit cae056d959
7 changed files with 407 additions and 392 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ where
mod test {
use std::io::Cursor;
use crate::diag::{DataType, HdlcEncapsulatedMessage, test::get_test_message};
use crate::diag::{DataType, HdlcEncapsulatedMessage, diaglog::test::get_test_message};
use super::*;