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