Revert "Add screen to select individual relays when posting/broadcasting"

This reverts commit 04759107a2.
This commit is contained in:
William Casarin
2023-02-06 14:40:54 -08:00
parent 04759107a2
commit ae6608cf7d
7 changed files with 40 additions and 244 deletions

View File

@@ -7,14 +7,14 @@
import Foundation
public struct RelayInfo: Codable, Hashable {
public struct RelayInfo: Codable {
let read: Bool
let write: Bool
static let rw = RelayInfo(read: true, write: true)
}
public struct RelayDescriptor: Codable, Hashable {
public struct RelayDescriptor: Codable {
public let url: URL
public let info: RelayInfo
}