// 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]" at.EntryPoint(root) completion.EntryPoint(root) root.Exec() }