mirror of
https://salsa.debian.org/mdosch/go-sendxmpp
synced 2024-11-12 13:10:25 +00:00
23 lines
874 B
Go
23 lines
874 B
Go
// 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 (
|
|
version = "0.6.0-devel"
|
|
nsDiscoInfo = "http://jabber.org/protocol/disco#info"
|
|
nsDiscoItems = "http://jabber.org/protocol/disco#items"
|
|
nsEme = "urn:xmpp:eme:0"
|
|
nsHints = "urn:xmpp:hints"
|
|
nsHTTPUpload = "urn:xmpp:http:upload:0"
|
|
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"
|
|
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"
|
|
)
|