go-captiveportal/error.go
2020-10-16 17:27:44 +02:00

8 lines
124 B
Go

package captiveportal
import "errors"
var (
ErrClientIdentificationFailed = errors.New("client identification failed")
)