Init All Docs
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package constant
|
||||
|
||||
import "github.com/google/uuid"
|
||||
|
||||
const (
|
||||
// SystemUUID is the UUID used for system-generated entities
|
||||
SystemUUIDString = "11111111-2222-3333-4444-555555555555"
|
||||
)
|
||||
|
||||
var (
|
||||
// SystemUserID is the UUID for the system user
|
||||
SystemUserID = uuid.MustParse(SystemUUIDString)
|
||||
|
||||
// SystemDepartmentID is the UUID for the system department
|
||||
SystemDepartmentID = uuid.MustParse(SystemUUIDString)
|
||||
)
|
||||
|
||||
// System entity constants
|
||||
const (
|
||||
SystemUserEmail = "system@eslogad.internal"
|
||||
SystemUserName = "System User"
|
||||
SystemDeptCode = "SYSTEM"
|
||||
SystemDeptName = "System"
|
||||
)
|
||||
Reference in New Issue
Block a user