24 lines
578 B
Go
24 lines
578 B
Go
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"
|
|
) |