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

View File

@@ -4,8 +4,8 @@ package main
import (
"kitty/tools/cli"
"kitty/tools/cmd/at"
"kitty/tools/cmd/completion"
"kitty/tools/cmd/tool"
)
func main() {
@@ -13,9 +13,7 @@ func main() {
root.ShortDescription = "Fast, statically compiled implementations for various kitty command-line tools"
root.Usage = "command [command options] [command args]"
// @
at.EntryPoint(root)
// __complete__
tool.KittyToolEntryPoints(root)
completion.EntryPoint(root)
root.Exec()