File: data.py

package info (click to toggle)
python-omemo 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 584 kB
  • sloc: python: 3,511; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import twomemo
import oldmemo
from typing_extensions import Final


__all__ = [
    "NS_TWOMEMO",
    "NS_OLDMEMO",
    "ALICE_BARE_JID",
    "BOB_BARE_JID"
]


NS_TWOMEMO: Final = twomemo.twomemo.NAMESPACE
NS_OLDMEMO: Final = oldmemo.oldmemo.NAMESPACE

ALICE_BARE_JID: Final = "alice@example.org"
BOB_BARE_JID: Final = "bob@example.org"