netmaker/models/error.go

6 lines
86 B
Go
Raw Normal View History

2022-08-31 23:38:29 +08:00
package models
type Error string
func (e Error) Error() string { return string(e) }