feat: add ClearFiles(paths ...string)

This commit is contained in:
lilong.129
2025-03-27 19:37:35 +08:00
parent d2f92923ee
commit f73d91da9c
6 changed files with 26 additions and 1 deletions

View File

@@ -297,3 +297,8 @@ func (hd *HDCDriver) ClearImages() error {
log.Warn().Msg("ClearImages not implemented in HDCDriver")
return nil
}
func (hd *HDCDriver) ClearFiles(paths ...string) error {
log.Warn().Msg("ClearFiles not implemented in HDCDriver")
return nil
}