1package main
2
3import (
4	"github.com/mitchellh/cli"
5	"strings"
6)
7
8type UserNotificationRuleDelete struct {
9}
10
11func UserNotificationRuleDeleteCommand() (cli.Command, error) {
12	return &UserNotificationRuleDelete{}, nil
13}
14
15func (c *UserNotificationRuleDelete) Help() string {
16	helpText := `
17	`
18	return strings.TrimSpace(helpText)
19}
20
21func (c *UserNotificationRuleDelete) Synopsis() string {
22	return "Remove a user's notification rule"
23}
24
25func (c *UserNotificationRuleDelete) Run(args []string) int {
26	return 0
27}
28