oktopus/backend/services/controller/internal/entity/msg.go
2024-03-21 22:14:06 -03:00

11 lines
165 B
Go

package entity
type DataType interface {
[]map[string]interface{} | *string | Device | int64 | []Device
}
type MsgAnswer[T DataType] struct {
Code int
Msg T
}