refactor DNS resolution and IP handling; remove unused utility

This commit is contained in:
2025-03-24 19:47:26 +01:00
parent 9253e53ca1
commit 6f0125896a
4 changed files with 86 additions and 90 deletions
+4 -4
View File
@@ -15,11 +15,11 @@ export interface DNSEntry {
}
export interface FetchServerInfoRequest {
type: 'FETCH_SERVER_INFO';
hostname: string;
type: 'FETCH_SERVER_INFO'
hostname: string
}
export interface FetchServerInfoResponse {
error?: string;
data?: ServerData;
error?: string
data?: ServerData
}