This repository has been archived on 2025-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
porom/constants.lua
2025-05-18 05:41:26 +03:00

12 lines
140 B
Lua

local Constants = {}
Constants.PermissionLevel = {
GUEST = 0,
USER = 1,
ADMIN = 2,
}
Constants.BCRYPT_ROUNDS = 10
return Constants