mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
8 lines
186 B
Go
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"`
|
|
}
|