blob: f0472923b62aa83a3b1bcc44df791b8c8931611d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package fetch
type treeFSOp uint8
const (
treeFSOpOpen treeFSOp = iota
treeFSOpReadFile
treeFSOpReadDir
treeFSOpStat
treeFSOpSub
)
func (op treeFSOp) pathErrorOp() string {
switch op {
case treeFSOpOpen:
return "open"
case treeFSOpReadFile:
return "readfile"
case treeFSOpReadDir:
return "readdir"
case treeFSOpStat:
return "stat"
case treeFSOpSub:
return "sub"
default:
return "treefs"
}
}
|