summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/core/__init__.py
blob: 55672e4ef28159600fb905a5e032fcfbcbf5ec67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import platform

APPNAME = "bitmask.core"
if platform.system() =='Windows':
    ENDPOINT = "tcp://127.0.0.1:5001"
else:
    ENDPOINT = "ipc:///tmp/%s.sock" % APPNAME

# FIXME some temporary imports to make the modules
# appear in the coverage report. Remove the imports when
# test code cover them.
import service
import uuid_map
import mail_services
import dispatcher