mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:26:30 +00:00
7750025631
remove dummy dlls, remove resource loader from c#. TODO: Load dlls separately by Loader UI and loader client WIP
17 lines
316 B
Cython
17 lines
316 B
Cython
cdef class FileData:
|
|
cdef public str folder
|
|
cdef public str filename
|
|
|
|
@staticmethod
|
|
cdef from_msgpack(bytes data)
|
|
|
|
cdef bytes serialize(self)
|
|
|
|
cdef class UploadFileData(FileData):
|
|
cdef public bytes resource
|
|
|
|
@staticmethod
|
|
cdef from_msgpack(bytes data)
|
|
|
|
cdef bytes serialize(self)
|