1package main
2
3import (
4	"github.com/mitchellh/cli"
5	"strings"
6)
7
8type EscalationPolicyDelete struct {
9}
10
11func EscalationPolicyDeleteCommand() (cli.Command, error) {
12	return &EscalationPolicyDelete{}, nil
13}
14
15func (c *EscalationPolicyDelete) Help() string {
16	helpText := `
17	`
18	return strings.TrimSpace(helpText)
19}
20
21func (c *EscalationPolicyDelete) Synopsis() string {
22	return "Deletes an existing escalation policy and rules"
23}
24
25func (c *EscalationPolicyDelete) Run(args []string) int {
26	return 0
27}
28