Files
tun2socks/common/lsof/lsof.go
T
2019-08-13 12:05:00 +08:00

11 lines
140 B
Go

package lsof
import (
"errors"
)
var (
ErrNotFound = errors.New("not found")
ErrNotImplemented = errors.New("not implemented")
)