// License: GPLv3 Copyright: 2022, Kovid Goyal, package main import ( "kitty/tools/cli" _ "kitty/tools/cmd/at" "kitty/tools/completion" ) func main() { root := cli.NewRootCommand() root.ShortDescription = "Fast, statically compiled implementations for various kitty command-line tools" root.Usage = "command [command options] [command args]" // root.AddCommand(at.EntryPoint(root)) completion.EntryPoint(root) root.Exec() }