proxy/models.go

12 lines
193 B
Go
Raw Permalink Normal View History

2023-10-22 21:46:41 +00:00
package proxy
// Request/response
type InfoResponse struct {
Version string `json:"version"`
}
type ErrorResponse struct {
Status int `json:"status"`
Message string `json:"message"`
}