package
Version:
v0.0.0-...-8db7afe
Opens a new window with list of versions in this module.
Published: Feb 3, 2023
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Comment struct {
ArticleID string `gorm:"type:char(36);not null"`
}
type ReqBodyCreateComment struct {
ArticleSlug string
UserID string
Content string `form:"content" json:"content" xml:"content" binding:"required"`
}
type ReqBodyUpdateComment struct {
ID string
ArticleSlug string
UserID string
Content string `form:"content" json:"content" xml:"content" binding:"required"`
}
type ResBodyComment struct {
ID string `json:"id"`
ArticleID string `json:"article_id"`
WriteBy string `json:"write_by"`
Content string `json:"content"`
UpdateAt time.Time `json:"update_at"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.