Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
22 lines
322 B
22 lines
322 B
package models
|
|
|
|
type Error struct {
|
|
Status byte
|
|
Msg string
|
|
}
|
|
|
|
func ReurnError(msg string) *Error {
|
|
return &Error{Status: byte(1), Msg: msg}
|
|
}
|
|
|
|
type Success struct {
|
|
Status byte
|
|
Msg string
|
|
}
|
|
|
|
func ReurnSuccess(msg string) *Error {
|
|
if msg == "" {
|
|
msg = "success"
|
|
}
|
|
return &Error{Status: byte(0), Msg: msg}
|
|
}
|
|
|