mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 04:46:42 -04:00
10 lines
284 B
Go
10 lines
284 B
Go
//go:build returnOnExit
|
|
|
|
package core
|
|
|
|
// launchClipClear launches the automated clipboard clearing process.
|
|
// For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine.
|
|
func launchClipClear(copySubject string) {
|
|
go clipClear(copySubject)
|
|
}
|