mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
f9815a0a3f
put new Versioning fix bugs
24 lines
454 B
Cython
24 lines
454 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)
|
|
|
|
cdef class FileList:
|
|
cdef public list[str] files
|
|
|
|
@staticmethod
|
|
cdef from_msgpack(bytes data)
|
|
|
|
cdef bytes serialize(self) |