go-ddd-api
go-ddd-api copied to clipboard
API with domain driven design approach using golang, gorm, and mysql
Results
4
go-ddd-api issues
Sort by
recently updated
recently updated
newest added
Hello, Just as a suggestion, it would be great if you could include tests. Examlatory code looks great and tests would make it even better.
There's error on path `/application/news.go` it said error `Unresolved reference 'Pagging'` on function **GetAllNews()** ```go func GetAllNews(limit int, page int) ([]domain.News, error) { ... pagination.Pagging(&pagination.Param{ DB: conn.Preload("Topic"), Page: page, Limit:...