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ů.
23 lines
322 B
23 lines
322 B
před 6 roky
|
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}
|
||
|
}
|