package models func Init() { // Core HR models initResourceCalendar() initHREmployee() initHRDepartment() initHRJob() initHrContract() // Leave management initHrLeaveType() initHrLeave() initHrLeaveAllocation() // Attendance initHrAttendance() // Expenses initHrExpense() // Skills & Resume initHrSkill() // Extend hr.employee with links to new models (must come last) initHrEmployeeExtensions() }