mirror of
https://github.com/mudler/LocalAI
synced 2026-05-24 09:28:23 +00:00
8 lines
182 B
Go
8 lines
182 B
Go
|
|
package schema
|
||
|
|
|
||
|
|
// BackendResponse represents the response for backend operations
|
||
|
|
type BackendResponse struct {
|
||
|
|
ID string `json:"id"`
|
||
|
|
StatusURL string `json:"status_url"`
|
||
|
|
}
|