mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03: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_io_stop(ctx)
|