实用程序
常见的Golang实用程序
系统错误/输出处理(错误/事件)-
定义结构
// GeneralError struct (500-510)
type GeneralError struct {
Code string
Message string
Err error
}
func (c *GeneralError) Error() string {
return fmt.Sprintf("Code: %s, Message: %s, Err: %s", c.Code, c.Message, c.Err)
}
// GeneralOutput struct (5)
type GeneralOutput struct {
Code string
Message string
Out string
}
//Outp method
func (c
2021-03-09 09:07:59
1.07MB
Go
1