chore: remove storage layer

This commit is contained in:
reya
2024-02-22 08:58:45 +07:00
parent 9127d5c5ea
commit e9ce932646
10 changed files with 150 additions and 425 deletions
+8 -4
View File
@@ -47,15 +47,19 @@ fn main() {
client
.add_relay("wss://nostr.mutinywallet.com")
.await
.expect("Failed to add bootstrap relay.");
.unwrap_or_default();
client
.add_relay("wss://bostr.yonle.lecturify.net")
.add_relay("wss://relay.nostr.band")
.await
.expect("Failed to add bootstrap relay.");
.unwrap_or_default();
client
.add_relay("wss://relay.damus.io")
.await
.unwrap_or_default();
client
.add_relay("wss://purplepag.es")
.await
.expect("Failed to add bootstrap relay.");
.unwrap_or_default();
// Connect
client.connect().await;