Initial Commit

This commit is contained in:
2021-10-16 15:01:47 -04:00
commit 42c46d9d84
18 changed files with 553 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
public struct HumiditySensor: Equatable {
public var topic: String
public init(topic: String) {
self.topic = topic
}
}