Init All Docs

This commit is contained in:
Aditya Siregar
2025-09-08 12:24:37 +07:00
parent aa662a321f
commit 2319019eb2
68 changed files with 5417 additions and 437 deletions
+24
View File
@@ -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"
)