From 44219730e45fd26963883afb6cf92205002ed1d8 Mon Sep 17 00:00:00 2001 From: Autumn Date: Sun, 17 May 2026 19:04:13 +0100 Subject: [main] added basic dns lookup --- src/help.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/help.lua') diff --git a/src/help.lua b/src/help.lua index 7f0c82d..cf6b25e 100644 --- a/src/help.lua +++ b/src/help.lua @@ -14,6 +14,9 @@ function main () print("---*> 0000 - echo") print("\n---*> 0001 - fetchservice\n") + print("\n*> Other Utils:") + print("---*> dns") + end -- 0000: echo @@ -36,11 +39,22 @@ function fetchservice () end +-- misc: look up dns +function dns () + + print("\nDNS Lookup - Look up the IP address associated with a hostname.") + + print("\n*> Usage:") + print("\n lua selenepaw.lua dns \n") +end + -- return return { main = main, echo = echo, - fetchservice = fetchservice + fetchservice = fetchservice, + + dns = dns } -- cgit v1.3