You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
426 B
21 lines
426 B
package iotaScheme
|
|
|
|
// iota scheme 常量
|
|
const (
|
|
// ModeResponse 周期
|
|
ModeResponse string = "R"
|
|
// ModeListen 监听
|
|
ModeListen string = "L"
|
|
// UnitSecond 秒
|
|
UnitSecond string = "second"
|
|
// UnitMinute 分钟
|
|
UnitMinute string = "minute"
|
|
// UnitHour 小时
|
|
UnitHour string = "hour"
|
|
// UnitDay 日
|
|
UnitDay string = "day"
|
|
// UnitWeek 周
|
|
UnitWeek string = "week"
|
|
// UnitMonth 月
|
|
UnitMonth string = "month"
|
|
)
|
|
|