Files
kitty/kittens/notify/main.go
2024-07-28 20:41:01 +05:30

18 lines
231 B
Go

package notify
import (
"fmt"
"kitty/tools/cli"
)
var _ = fmt.Print
func main(_ *cli.Command, opts_ *Options, args []string) (rc int, err error) {
return
}
func EntryPoint(parent *cli.Command) {
create_cmd(parent, main)
}