| 8 | var _ LocalStorage = &billyLocalStorage{} |
| 9 | |
| 10 | type billyLocalStorage struct { |
| 11 | billy.Filesystem |
| 12 | } |
| 13 | |
| 14 | func (b billyLocalStorage) RemoveAll(path string) error { |
| 15 | return util.RemoveAll(b.Filesystem, path) |
nothing calls this directly
no outgoing calls
no test coverage detected