mirror of
https://github.com/ArcaneChat/core.git
synced 2026-07-03 14:05:33 +02:00
8 lines
207 B
Python
8 lines
207 B
Python
from __future__ import print_function
|
|
from deltachat import capi
|
|
from deltachat.capi import ffi, lib
|
|
|
|
if __name__ == "__main__":
|
|
ctx = capi.lib.dc_context_new(ffi.NULL, ffi.NULL)
|
|
lib.dc_stop_io(ctx)
|