20 lines
321 B
Go
20 lines
321 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package tool
|
|
|
|
import (
|
|
"fmt"
|
|
"kitty/tools/cli"
|
|
"kitty/tools/cmd/at"
|
|
"kitty/tools/cmd/update_self"
|
|
)
|
|
|
|
var _ = fmt.Print
|
|
|
|
func KittyToolEntryPoints(root *cli.Command) {
|
|
// @
|
|
at.EntryPoint(root)
|
|
// update-self
|
|
update_self.EntryPoint(root)
|
|
}
|