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

@@ -71,6 +71,9 @@ type IDriver interface {
PullImages(localDir string) error
ClearImages() error
// files related
ClearFiles(paths ...string) error
// triggers the log capture and returns the log entries
StartCaptureLog(identifier ...string) error
StopCaptureLog() (result interface{}, err error)