Files
pig-farm-controller/internal/infra/transport/transport.go

8 lines
194 B
Go
Raw Normal View History

2025-09-15 18:56:11 +08:00
package transport
2025-09-15 18:57:47 +08:00
// Communicator 用于其他设备通信
type Communicator interface {
// Send 用于发送一条单向数据(不等待回信)
Send(deviceID string, payload []byte) error
2025-09-15 18:56:11 +08:00
}