mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
c0f8dd792d
fix same files problem in python different libs correct command logging in command handler
18 lines
454 B
Cython
18 lines
454 B
Cython
from remote_command_inf cimport RemoteCommand
|
|
|
|
cdef class LoadResult:
|
|
cdef public str err
|
|
cdef public bytes data
|
|
|
|
|
|
cdef class LoaderClient:
|
|
cdef object _loader_context
|
|
cdef object _socket
|
|
|
|
cdef RemoteCommand _send_receive_command(self, RemoteCommand command)
|
|
|
|
cdef load_big_small_resource(self, str filename, str directory)
|
|
|
|
cdef upload_big_small_resource(self, bytes content, str filename, str directory)
|
|
|
|
cdef stop(self) |