go17/vblog/utils/request.go

12 lines
142 B
Go
Raw Normal View History

2024-12-01 17:17:51 +08:00
package utils
2025-01-12 18:31:26 +08:00
func NewGetRequest(id uint) *GetRequest {
return &GetRequest{
Id: id,
}
}
2024-12-01 17:17:51 +08:00
type GetRequest struct {
Id uint `json:"id"`
}