12 lines
193 B
Go
12 lines
193 B
Go
package proxy
|
|
|
|
// Request/response
|
|
type InfoResponse struct {
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
type ErrorResponse struct {
|
|
Status int `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|