go-sendxmpp/const.go

24 lines
933 B
Go
Raw Normal View History

2022-04-10 06:01:23 +00:00
// Copyright 2022 Martin Dosch.
// Use of this source code is governed by the BSD-2-clause
// license that can be found in the LICENSE file.
package main
const (
2022-05-05 16:23:18 +00:00
version = "0.6.0-devel"
nsDiscoInfo = "http://jabber.org/protocol/disco#info"
2022-05-04 09:18:24 +00:00
nsDiscoItems = "http://jabber.org/protocol/disco#items"
nsEme = "urn:xmpp:eme:0"
2022-04-22 11:22:37 +00:00
nsHints = "urn:xmpp:hints"
nsHTTPUpload = "urn:xmpp:http:upload:0"
nsJabberClient = "jabber:client"
nsJabberData = "jabber:x:data"
2022-05-05 19:49:10 +00:00
nsMUCAdmin = "http://jabber.org/protocol/muc#admin"
nsOx = "urn:xmpp:openpgp:0"
nsOxPubKeys = "urn:xmpp:openpgp:0:public-keys"
nsPubsub = "http://jabber.org/protocol/pubsub"
2022-05-04 09:18:24 +00:00
nsPubsubOwner = "http://jabber.org/protocol/pubsub#owner"
oxAltBody = "This message is encrypted (XEP-0373: OpenPGP for XMPP)."
pubsubPubOptions = "http://jabber.org/protocol/pubsub#publish-options"
2022-04-10 06:01:23 +00:00
)