8 lines
156 B
Go
8 lines
156 B
Go
|
|
package newssvc
|
||
|
|
|
||
|
|
import newsdomain "legalgo-BE-go/internal/domain/news"
|
||
|
|
|
||
|
|
func (i *impl) GetAll() ([]newsdomain.News, error) {
|
||
|
|
return i.newsRepo.GetAll()
|
||
|
|
}
|