api/models/http.go

10 lines
164 B
Go
Raw Permalink Normal View History

2022-10-27 04:04:49 +02:00
package models
2022-10-30 01:08:07 +02:00
type VideosResponse struct {
2022-10-29 05:09:52 +02:00
Videos []Video `json:"videos"`
2022-10-27 04:04:49 +02:00
}
2022-10-30 01:08:07 +02:00
type VideoURIRequest struct {
VideoID string `uri:"video_id" binding:"required"`
}