oktopus/backend/services/controller/internal/entity/msg.go
2024-03-23 09:41:53 -03:00

13 lines
251 B
Go

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