Mercurial > libervia-backend
changeset 3679:b02fb5fcaa30
core (core_types): add `jid` to `SatXMPPEntity`
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 26 Sep 2021 16:38:34 +0200 |
parents | 2cbecbb52b72 |
children | 68f2a9c171d1 |
files | sat/core/core_types.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sat/core/core_types.py Wed Sep 08 18:00:02 2021 +0200 +++ b/sat/core/core_types.py Sun Sep 26 16:38:34 2021 +0200 @@ -16,6 +16,9 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +from twisted.words.protocols.jabber import jid as t_jid + class SatXMPPEntity: - pass + + jid: t_jid.JID