netmaker/models/error.go
2022-08-31 11:38:29 -04:00

6 lines
86 B
Go

package models
type Error string
func (e Error) Error() string { return string(e) }