Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
22 righe
322 B
22 righe
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}
|
|
}
|
|
|