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-22 10:37:35 +00:00
|
|
|
version = "0.6.0-devel"
|
2022-04-25 19:43:18 +00:00
|
|
|
nsDiscoInfo = "http://jabber.org/protocol/disco#info"
|
2022-05-04 09:18:24 +00:00
|
|
|
nsDiscoItems = "http://jabber.org/protocol/disco#items"
|
2022-04-17 15:16:29 +00:00
|
|
|
nsEme = "urn:xmpp:eme:0"
|
2022-04-22 11:22:37 +00:00
|
|
|
nsHints = "urn:xmpp:hints"
|
2022-04-25 19:29:14 +00:00
|
|
|
nsHTTPUpload = "urn:xmpp:http:upload:0"
|
2022-04-17 15:16:29 +00:00
|
|
|
nsJabberClient = "jabber:client"
|
|
|
|
nsJabberData = "jabber:x:data"
|
|
|
|
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"
|
2022-04-17 15:16:29 +00:00
|
|
|
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
|
|
|
)
|