mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 23:36:31 +00:00
10 lines
290 B
Cython
10 lines
290 B
Cython
cdef class ApiClient:
|
|
cdef str email, password, token, folder, token_file, api_url
|
|
|
|
cdef get_encryption_key(self, str hardware_hash)
|
|
cdef login(self, str email, str password)
|
|
cdef load_bytes(self, str filename)
|
|
cdef load_ai_model(self)
|
|
cdef load_queue_config(self)
|
|
|