usermngmt/constant.go

12 lines
149 B
Go
Raw Normal View History

2021-11-08 04:53:03 +00:00
package usermngmt
// Constant ...
const (
tableUser = "users"
2021-11-08 08:34:20 +00:00
tableRole = "roles"
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
)