(self, dest)
| 88 | |
| 89 | class SynoArchive(object): |
| 90 | def __init__(self, dest): |
| 91 | self.ctx = _synoarchive_init(ctypes.c_char_p(dest.encode("ascii"))) |
| 92 | |
| 93 | def open(self, keytype, archive): |
| 94 | result = _synoarchive_open( |
nothing calls this directly
no outgoing calls
no test coverage detected