Add vcard support

This commit is contained in:
Chteufleur 2016-04-20 22:24:38 +02:00
parent e0e253ce4b
commit 8f21af2b45
1 changed files with 15 additions and 0 deletions

15
src/xmpp/vcard.go Normal file
View File

@ -0,0 +1,15 @@
package xmpp
import (
"encoding/xml"
)
const (
NsVCardTemp = "vcard-temp"
)
// XEP-0054 vCard
type VCard struct {
XMLName xml.Name `xml:"vcard-temp vCard"`
// TODO Must complete truct
}