mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
9 lines
196 B
Python
9 lines
196 B
Python
import _ankirs # pytype: disable=import-error
|
|
|
|
|
|
class RSBridge:
|
|
def __init__(self):
|
|
self._bridge = _ankirs.Bridge()
|
|
assert self._bridge.cmd("") == "test"
|
|
|
|
bridge = RSBridge()
|