devicemngmt/constant.go

15 lines
191 B
Go
Raw Normal View History

2021-11-05 07:21:57 +00:00
package devicemngmt
// Constant ...
const (
2021-11-05 08:40:07 +00:00
tableDevice = "devices"
2021-11-10 10:08:39 +00:00
tablePrefixDefault = "devicemngmt"
2021-11-05 07:21:57 +00:00
timezoneHCM = "Asia/Ho_Chi_Minh"
2021-11-05 08:40:07 +00:00
langVi = "vi"
langEn = "en"
2021-12-09 04:35:39 +00:00
limit200 = 200
2021-11-05 07:21:57 +00:00
)