package cmd import ( "github.com/atotto/clipboard" ) func copyToClipboard(content string) error { return clipboard.WriteAll(content) }