go-lemmy/types/types.go

33 lines
554 B
Go
Raw Normal View History

2022-12-10 17:17:16 +00:00
package types
import (
"fmt"
"net/http"
)
type LemmyResponse struct {
2022-12-10 23:33:08 +00:00
Error Optional[string] `json:"error" url:"error,omitempty"`
2022-12-10 17:17:16 +00:00
}
type HTTPError struct {
Code int
}
func (he HTTPError) Error() string {
return fmt.Sprintf("%d %s", he.Code, http.StatusText(he.Code))
}
type LemmyError struct {
ErrStr string
Code int
}
func (le LemmyError) Error() string {
return fmt.Sprintf("%d %s: %s", le.Code, http.StatusText(le.Code), le.ErrStr)
}
2022-12-13 01:35:41 +00:00
type LemmyWebSocketMsg struct {
Op UserOperation `json:"op"`
Data any `json:"data"`
}