16 lines
322 B
Go
16 lines
322 B
Go
package module
|
|
|
|
import "time"
|
|
|
|
const (
|
|
ProbeHeader_ProbeKey = "overFlow-Probe-Key"
|
|
)
|
|
|
|
type Probe struct {
|
|
ID uint64 `json:"id"`
|
|
Description string `json:"description"`
|
|
TempProbeKey string `json:"tempProbeKey"`
|
|
CreateDate time.Time `json:"createDate"`
|
|
ProbeKey string `json:"probeKey"`
|
|
}
|