From cd825462f96a33b46dbe97726e34ae89a906debf Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Mon, 20 Jan 2025 11:48:33 +0700 Subject: [PATCH] feat: update error article category details --- .../response/article_category_details.response.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/module/article_category_details/response/article_category_details.response.go b/app/module/article_category_details/response/article_category_details.response.go index dc2ff6b..d2e1bf7 100644 --- a/app/module/article_category_details/response/article_category_details.response.go +++ b/app/module/article_category_details/response/article_category_details.response.go @@ -3,10 +3,10 @@ package response import "time" type ArticleCategoryDetailsResponse struct { - ID uint `json:"id"` - ArticleId int `json:"article_id"` - CategoryId int `json:"category_id"` - IsActive bool `json:"is_active"` - CreatedAt time.Time `json:"created_at"` - UpdatedAt time.Time `json:"updated_at"` -} \ No newline at end of file + ID uint `json:"id"` + ArticleId uint `json:"article_id"` + CategoryId int `json:"category_id"` + IsActive bool `json:"is_active"` + CreatedAt time.Time `json:"created_at"` + UpdatedAt time.Time `json:"updated_at"` +}