File: expunge.go

package info (click to toggle)
golang-github-emersion-go-imap 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 840 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (3)
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
}