aboutsummaryrefslogtreecommitdiff
path: root/python/olm/_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/olm/_base.py')
-rw-r--r--python/olm/_base.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/python/olm/_base.py b/python/olm/_base.py
deleted file mode 100644
index ad21d6f..0000000
--- a/python/olm/_base.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import os.path
-
-from ctypes import *
-
-
-lib = cdll.LoadLibrary(os.path.join(
- os.path.dirname(__file__), "..", "..", "build", "libolm.so.2")
-)
-
-lib.olm_error.argtypes = []
-lib.olm_error.restypes = c_size_t
-
-ERR = lib.olm_error()
-
-
-class OlmError(Exception):
- pass