This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
package xmpp
|
|
|
|
// IQType is a Enum of iq attribute type
|
|
type IQType string
|
|
|
|
// RFC 6120: part of A.5 Client Namespace and A.6 Server Namespace
|
|
const (
|
|
IQTypeError IQType = "error"
|
|
IQTypeGet IQType = "get"
|
|
IQTypeResult IQType = "result"
|
|
IQTypeSet IQType = "set"
|
|
)
|