mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
10 lines
110 B
Go
10 lines
110 B
Go
package err
|
|
|
|
type Error struct {
|
|
Msg string
|
|
Err error
|
|
}
|
|
|
|
func (e *Error) Ok() bool {
|
|
return e.Err == nil
|
|
}
|