mirror of
https://github.com/home-assistant/iOS.git
synced 2026-04-17 17:02:29 -05:00
10 lines
266 B
Swift
10 lines
266 B
Swift
import Foundation
|
|
|
|
public enum HAServices {
|
|
public static let toggle = "toggle"
|
|
public static let openCover = "open_cover"
|
|
public static let closeCover = "close_cover"
|
|
public static let turnOn = "turn_on"
|
|
public static let turnOff = "turn_off"
|
|
}
|