comparison sat_frontends/jp/cmd_account.py @ 4071:4b842c1fb686

refactoring: renamed `sat` package to `libervia.backend`
author Goffi <goffi@goffi.org>
date Fri, 02 Jun 2023 11:49:51 +0200
parents 524856bd7b19
children
comparison
equal deleted inserted replaced
4070:d10748475025 4071:4b842c1fb686
19 19
20 """This module permits to manage XMPP accounts using in-band registration (XEP-0077)""" 20 """This module permits to manage XMPP accounts using in-band registration (XEP-0077)"""
21 21
22 from sat_frontends.jp.constants import Const as C 22 from sat_frontends.jp.constants import Const as C
23 from sat_frontends.bridge.bridge_frontend import BridgeException 23 from sat_frontends.bridge.bridge_frontend import BridgeException
24 from sat.core.log import getLogger 24 from libervia.backend.core.log import getLogger
25 from sat.core.i18n import _ 25 from libervia.backend.core.i18n import _
26 from sat_frontends.jp import base 26 from sat_frontends.jp import base
27 from sat_frontends.tools import jid 27 from sat_frontends.tools import jid
28 28
29 29
30 log = getLogger(__name__) 30 log = getLogger(__name__)