| 23 | } |
| 24 | |
| 25 | type ServerPair interface { |
| 26 | GetPair(id string) []byte |
| 27 | AddPair(id string, public []byte, permissions byte) |
| 28 | DelPair(id string) |
| 29 | } |
| 30 | |
| 31 | type ServerAccessory interface { |
| 32 | GetAccessories(conn net.Conn) []*hap.Accessory |
no outgoing calls
no test coverage detected