add domain whois/dns support, refactor codebase

This commit is contained in:
2025-09-17 20:38:51 +02:00
parent 477bc242aa
commit 16fc344a68
29 changed files with 1396 additions and 867 deletions
+7
View File
@@ -0,0 +1,7 @@
package server
// bogonDataStruct represents the response structure for bogon IP queries.
type bogonDataStruct struct {
IP string `json:"ip"`
Bogon bool `json:"bogon"`
}