update lsof code

This commit is contained in:
Jason
2019-08-13 12:05:00 +08:00
parent af574d4b65
commit d463bd9263
4 changed files with 17 additions and 12 deletions

10
common/lsof/lsof.go Normal file
View File

@@ -0,0 +1,10 @@
package lsof
import (
"errors"
)
var (
ErrNotFound = errors.New("not found")
ErrNotImplemented = errors.New("not implemented")
)