9 lines
113 B
Swift
9 lines
113 B
Swift
|
|
public struct Relay {
|
|
public var topic: String
|
|
|
|
public init(topic: String) {
|
|
self.topic = topic
|
|
}
|
|
}
|