add pxd headers for correct work

fixes definitions
can run until API call
This commit is contained in:
Alex Bezdieniezhnykh
2025-01-16 17:56:58 +02:00
parent 7439005ed7
commit e21dd7e70f
17 changed files with 207 additions and 165 deletions
+15
View File
@@ -0,0 +1,15 @@
cdef enum ProcessorType:
SOCKET = 1,
RABBIT = 2
cdef enum CommandType:
INFERENCE = 1
LOAD = 2
cdef class FileCommand:
cdef CommandType command_type
cdef ProcessorType processor_type
cdef str filename
@staticmethod
cdef from_msgpack(bytes data, ProcessorType processor_type)