mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 07:25:27 +02:00
13 lines
178 B
Go
13 lines
178 B
Go
package wireguard
|
|
|
|
type malformedLineError struct{}
|
|
|
|
func (e *malformedLineError) Error() string {
|
|
return "Malformed line"
|
|
}
|
|
|
|
type lineError struct {
|
|
Line uint32
|
|
Err error
|
|
}
|