码农笔录博客源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
359 B

пре 6 година
package models
type Error struct {
пре 6 година
Status int
пре 6 година
Msg string
}
пре 6 година
func ReurnError(status int,msg string) *Error {
if msg == "" {
msg = "error"
}
пре 6 година
return &Error{Status: status, Msg: msg}
пре 6 година
}
type Success struct {
пре 6 година
Status int
пре 6 година
Msg string
}
func ReurnSuccess(msg string) *Error {
if msg == "" {
msg = "success"
}
пре 6 година
return &Error{Status: 0, Msg: msg}
пре 6 година
}