mirror of
https://salsa.debian.org/mdosch/go-sendxmpp
synced 2024-11-12 13:10:25 +00:00
20 lines
691 B
Go
20 lines
691 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.4.0-devel"
|
|
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"
|
|
oxAltBody = "This message is encrypted (XEP-0373: OpenPGP for XMPP)."
|
|
pubsubPubOptions = "http://jabber.org/protocol/pubsub#publish-options"
|
|
)
|