Start work on a command to self update kitty-tool

This commit is contained in:
Kovid Goyal
2022-11-15 21:29:11 +05:30
parent 36dd5b2d00
commit d54fe3c16a
4 changed files with 289 additions and 16 deletions

View File

@@ -6,6 +6,7 @@ import (
"fmt"
"kitty/tools/cli"
"kitty/tools/cmd/at"
"kitty/tools/cmd/update_self"
)
var _ = fmt.Print
@@ -13,5 +14,6 @@ var _ = fmt.Print
func KittyToolEntryPoints(root *cli.Command) {
// @
at.EntryPoint(root)
// update-self
update_self.EntryPoint(root)
}