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.
23 righe
322 B
23 righe
322 B
6 anni fa
|
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}
|
||
|
}
|