usermngmt/internal/constant.go

13 lines
166 B
Go
Raw Normal View History

2021-11-10 01:44:22 +00:00
package internal
// Constant ...
const (
timezoneHCM = "Asia/Ho_Chi_Minh"
2021-12-14 09:30:41 +00:00
passwordHashingCost = 12
2021-11-10 05:07:58 +00:00
TablePrefixDefault = "usermngmt"
2021-11-11 03:20:08 +00:00
RoleTypeAdmin = "admin"
2021-11-10 01:44:22 +00:00
)