8 lines
175 B
Go
Raw Normal View History

2025-03-25 18:01:14 +08:00
package staffsvc
import staffdomain "legalgo-BE-go/internal/domain/staff"
func (i *impl) GetStaffs() ([]staffdomain.StaffProfile, error) {
return i.staffRepo.GetStaffs()
}