mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:06:30 +00:00
7750025631
remove dummy dlls, remove resource loader from c#. TODO: Load dlls separately by Loader UI and loader client WIP
13 lines
368 B
Cython
13 lines
368 B
Cython
from remote_command cimport RemoteCommand
|
|
|
|
cdef class LoaderClient:
|
|
cdef object _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 close(self) |