8 lines
175 B
Go
8 lines
175 B
Go
|
|
package staffsvc
|
||
|
|
|
||
|
|
import staffdomain "legalgo-BE-go/internal/domain/staff"
|
||
|
|
|
||
|
|
func (i *impl) GetStaffs() ([]staffdomain.StaffProfile, error) {
|
||
|
|
return i.staffRepo.GetStaffs()
|
||
|
|
}
|