mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-10 13:04:03 +03:00
20 lines
394 B
Go
20 lines
394 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package clipboard
|
|
|
|
import (
|
|
"kitty/tools/cli"
|
|
)
|
|
|
|
func clipboard_main(cmd *cli.Command, opts *Options, args []string) (rc int, err error) {
|
|
if len(args) > 0 {
|
|
return 0, run_mime_loop(opts, args)
|
|
}
|
|
|
|
return 0, run_plain_text_loop(opts)
|
|
}
|
|
|
|
func EntryPoint(parent *cli.Command) {
|
|
create_cmd(parent, clipboard_main)
|
|
}
|