From 49158da6ee99940aa99e751b35fe3f8b5e4a8c2d Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Thu, 31 Oct 2024 06:33:56 -0400 Subject: [PATCH] refactor: update main and maindp to include lookup module --- src/main.rs | 1 + src/maindp.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 25563bfad..b6907fa4e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -57,6 +57,7 @@ mod clitypes; mod cmd; mod config; mod index; +mod lookup; mod odhtcache; mod select; mod util; diff --git a/src/maindp.rs b/src/maindp.rs index dbdb86a68..498a8c9f3 100644 --- a/src/maindp.rs +++ b/src/maindp.rs @@ -92,6 +92,7 @@ mod clitypes; mod cmd; mod config; mod index; +mod lookup; mod odhtcache; mod select; mod util;