usermngmt/constant.go

13 lines
201 B
Go
Raw Normal View History

2021-11-08 04:53:03 +00:00
package usermngmt
// Constant ...
const (
2021-11-08 11:21:52 +00:00
tableUser = "users"
tableRole = "roles"
tablePrefixDefault = "usermngmt"
2021-11-08 04:53:03 +00:00
timezoneHCM = "Asia/Ho_Chi_Minh"
2021-11-08 10:04:01 +00:00
passwordHashingCost = 14
2021-11-08 04:53:03 +00:00
)