feat: 支持获取剪贴板

This commit is contained in:
余泓铮
2025-07-24 17:26:25 +08:00
parent 9add5df1b2
commit 8b20fceb63
7 changed files with 81 additions and 17 deletions

View File

@@ -86,4 +86,7 @@ type IDriver interface {
// triggers the log capture and returns the log entries
StartCaptureLog(identifier ...string) error
StopCaptureLog() (result interface{}, err error)
// clipboard operations
GetPasteboard() (string, error)
}