oktopus/backend/services/controller/internal/entity/msg.go
2024-04-20 11:20:38 -03:00

13 lines
260 B
Go

package entity
import "time"
type DataType interface {
[]map[string]interface{} | *string | Device | int64 | []Device | []VendorsCount | []ProductClassCount | []StatusCount | time.Duration | []byte
}
type MsgAnswer[T DataType] struct {
Code int
Msg T
}