mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2025-12-19 23:34:19 +01:00
11 lines
178 B
Go
11 lines
178 B
Go
package util
|
|
|
|
type ApiResponse struct {
|
|
Error ErrorDescription `json:"error"`
|
|
}
|
|
|
|
type ErrorDescription struct {
|
|
Code string `json:"code"`
|
|
Message string `json:"message"`
|
|
}
|