package utils
func NewGetRequest(id uint) *GetRequest {
return &GetRequest{
Id: id,
}
type GetRequest struct {
Id uint `json:"id"`