1package errs 2 3import "errors" 4 5var ( 6 EmptyToken = errors.New("empty token") 7 LinkIsDir = errors.New("link is dir") 8) 9 10