(ctx context.Context)
| 22 | } |
| 23 | |
| 24 | func (c *BindCache) Clear(ctx context.Context) error { |
| 25 | err := os.RemoveAll(c.bind) |
| 26 | if err != nil { |
| 27 | return err |
| 28 | } |
| 29 | return nil |
| 30 | } |
| 31 | |
| 32 | func (c *BindCache) Type() Type { |
| 33 | return Bind |
no test coverage detected