mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-06-29 15:26:02 +00:00
7 lines
126 B
Go
7 lines
126 B
Go
package api
|
|
|
|
// ErrorResponse represents a standard error response
|
|
type ErrorResponse struct {
|
|
Error string `json:"error"`
|
|
}
|