Kyoo/auth/kerror.go
2025-04-04 22:44:44 +02:00

8 lines
186 B
Go

package main
type KError struct {
Status int `json:"status" example:"404"`
Message string `json:"message" example:"No user found with this id"`
Details any `json:"details"`
}