mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 14:06:31 +00:00
82b3b526a7
file load works, suite can start up
12 lines
210 B
Cython
12 lines
210 B
Cython
cdef enum CommandType:
|
|
INFERENCE = 1
|
|
LOAD = 2
|
|
|
|
cdef class RemoteCommand:
|
|
cdef CommandType command_type
|
|
cdef str filename
|
|
cdef bytes data
|
|
|
|
@staticmethod
|
|
cdef from_msgpack(bytes data)
|