From 6257cfaeb897b53b10f6c6ed6993cc640ef0e9fb Mon Sep 17 00:00:00 2001 From: jotape24 Date: Mon, 6 Jan 2025 18:07:58 -0300 Subject: [PATCH] refactor: edns module declared in lib.rs --- src/edns.rs | 4 ---- src/lib.rs | 7 ++++++- 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 src/edns.rs diff --git a/src/edns.rs b/src/edns.rs deleted file mode 100644 index ec425194..00000000 --- a/src/edns.rs +++ /dev/null @@ -1,4 +0,0 @@ -pub mod opt_option; -pub mod options { - pub mod ede; -} \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index f4b0c2da..0a6bc215 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,4 +8,9 @@ pub mod truncated_dns_message; pub mod tsig; pub mod dnssec; pub mod example; -pub mod edns; \ No newline at end of file +pub mod edns{ + pub mod opt_option; + pub mod options { + pub mod ede; + } +} \ No newline at end of file