oktopus/backend/services/controller/internal/entity/msg.go

11 lines
146 B
Go

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