This commit is contained in:
Kovid Goyal
2022-09-30 14:00:01 +05:30
parent 6b04c42730
commit 654bd23109
3 changed files with 21 additions and 5 deletions

17
tools/cmd/tool/main.go Normal file
View File

@@ -0,0 +1,17 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tool
import (
"fmt"
"kitty/tools/cli"
"kitty/tools/cmd/at"
)
var _ = fmt.Print
func KittyToolEntryPoints(root *cli.Command) {
// @
at.EntryPoint(root)
}