Files
stdmodels/main.go
2024-05-08 18:20:33 -05:00

12 lines
235 B
Go

package stdmodels
type StandardMessage struct {
Message string `json:"message"`
}
type StandardError struct {
Message string `json:"message"`
Status int `json:"status"`
Description []string `json:"description"`
}