| 1 | package dh |
| 2 | |
| 3 | type DataHandler interface { |
| 4 | //AssignData assign data to slave list, return a map with single slave address as key and data as value |
| 5 | AssignData(data []byte, slaveAddrList []string) (map[string][]byte, error) |
| 6 | } |
nothing calls this directly
no outgoing calls
no test coverage detected