feat: ads log

This commit is contained in:
ericprd
2025-03-17 22:19:17 +08:00
parent ee8e8e140d
commit c0dcdb77fa
19 changed files with 276 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
package logsdomain
import (
adsdomain "legalgo-BE-go/internal/domain/ads"
)
type LogsRequest struct {
AdsID string `json:"ads_id" validate:"required"`
}
type LogResponse struct {
ID string `json:"id"`
News []adsdomain.Ads `json:"news"`
}