mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-27 03:42:49 +00:00
Start work on porting diff kitten
This commit is contained in:
parent
cb03168957
commit
44ff6bd1dd
5 changed files with 27 additions and 3 deletions
19
tools/cmd/diff/main.go
Normal file
19
tools/cmd/diff/main.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
// License: GPLv3 Copyright: 2023, Kovid Goyal, <kovid at kovidgoyal.net>
|
||||
|
||||
package diff
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"kitty/tools/cli"
|
||||
)
|
||||
|
||||
var _ = fmt.Print
|
||||
|
||||
func main(_ *cli.Command, opts *Options, args []string) (rc int, err error) {
|
||||
return
|
||||
}
|
||||
|
||||
func EntryPoint(parent *cli.Command) {
|
||||
create_cmd(parent, main)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue