first mvp

This commit is contained in:
2026-05-16 01:39:45 +08:00
parent b3a2ae4681
commit 69afb0a53e
13 changed files with 205 additions and 272 deletions
+9
View File
@@ -0,0 +1,9 @@
package cmd
import (
"github.com/atotto/clipboard"
)
func copyToClipboard(content string) error {
return clipboard.WriteAll(content)
}