8 lines
124 B
Go
8 lines
124 B
Go
|
package captiveportal
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrClientIdentificationFailed = errors.New("client identification failed")
|
||
|
)
|