summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0363/__init__.py
blob: f693eb92d59488c4df3e3a1082f1c69d0ff2f560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# slixmpp: The Slick XMPP Library
# Copyright (C) 2018 Emmanuel Gil Peyrot
# This file is part of slixmpp.
# See the file LICENSE for copying permission.
from slixmpp.plugins.base import register_plugin

from slixmpp.plugins.xep_0363.stanza import Request, Slot, Put, Get, Header
from slixmpp.plugins.xep_0363.http_upload import (
    XEP_0363,
    UploadServiceNotFound,
    FileTooBig,
    HTTPError,
    FileUploadError,
)

register_plugin(XEP_0363)