()
| 95 | } |
| 96 | |
| 97 | func (s *stat) content() []byte { |
| 98 | var buf bytes.Buffer |
| 99 | fmt.Fprintf(&buf, "%d", s.n.Get()) |
| 100 | buf.WriteByte('\n') |
| 101 | return buf.Bytes() |
| 102 | } |
| 103 | |
| 104 | func (s *stat) Attr(ctx context.Context, a *fuse.Attr) error { |
| 105 | a.Mode = 0400 |