go-xmpp/xmpp/packet.go
2016-02-15 11:08:54 +01:00

15 lines
363 B
Go

package xmpp
// Packet represents the root default structure for an XMPP packet.
type Packet struct {
Id string `xml:"id,attr,omitempty"`
From string `xml:"from,attr,omitempty"`
To string `xml:"to,attr,omitempty"`
Type string `xml:"type,attr,omitempty"`
Lang string `xml:"lang,attr,omitempty"`
}
type packetFormatter interface {
XMPPFormat() string
}