mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
10 lines
356 B
Go
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)
|
|
}
|