10 lines
190 B
Go
Raw Normal View History

2025-03-01 21:20:51 +08:00
package categorysvc
import (
categorydomain "legalgo-BE-go/internal/domain/category"
)
2025-03-01 21:20:51 +08:00
func (i *impl) GetAll() ([]categorydomain.Category, error) {
return i.categoryRepo.GetAllModel()
2025-03-01 21:20:51 +08:00
}