blob: af550a4d06772511df7a6d5542c17e627b0ff0b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package commands
import (
"github.com/emersion/go-imap"
)
// Expunge is an EXPUNGE command, as defined in RFC 3501 section 6.4.3.
type Expunge struct{}
func (cmd *Expunge) Command() *imap.Command {
return &imap.Command{Name: "EXPUNGE"}
}
func (cmd *Expunge) Parse(fields []interface{}) error {
return nil
}
|