feat: add basic relay management in rust

This commit is contained in:
reya
2024-05-11 12:28:07 +07:00
parent b46a5cf68f
commit 73f80f27fb
16 changed files with 440 additions and 168 deletions

View File

@@ -165,3 +165,10 @@ export interface NIP05 {
};
};
}
export interface Relays {
connected: string[];
read: string[];
write: string[];
both: string[];
}