Files
libmutton/core/launchClipClearProcessGUIGeneric.go
T

10 lines
356 B
Go

//go:build (windows || darwin || android || termux || wsl) && returnOnExit
package core
// launchClipClearProcess launches the automated clipboard clearing process.
// For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine.
func launchClipClearProcess(copySubject string) {
go clipClearProcess(copySubject)
}