14 lines
237 B
Go
14 lines
237 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package clipboard
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var _ = fmt.Print
|
|
|
|
func run_set_loop(opts *Options, args []string) (err error) {
|
|
return fmt.Errorf("TODO: Implement me")
|
|
}
|