mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-13 21:22:40 +08:00
6 lines
86 B
Go
6 lines
86 B
Go
|
package models
|
||
|
|
||
|
type Error string
|
||
|
|
||
|
func (e Error) Error() string { return string(e) }
|