2024-08-13 22:37:09 +02:00

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
}